-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 926 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "alignai",
"version": "0.1.6",
"description": "Server-side Align AI SDK for Node.js",
"keywords": [
"align-ai",
"conversation",
"analytics",
"sdk",
"ai-native",
"ingestion"
],
"author": "Coxwave <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint .",
"build": "rm -rf ./dist && tsc --allowJs"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.5.0",
"@connectrpc/connect-node": "^1.5.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
}
}