-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 KB
/
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
43
44
45
46
47
{
"name": "intento-starter-template",
"version": "1.0.0",
"description": "Pre-configured project to help you get started with Intento quickly.",
"main": "lib/index.js",
"scripts": {
"start": "nodemon -x tsx lib/index.js",
"dev": "npm run build && npm run start",
"build": "swc --strip-leading-paths --delete-dir-on-start -d lib src",
"buildandtest": "npm run build && npm run test",
"lint": "pnpm eslint .",
"format": "pnpm prettier . --write",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --verbose --no-watchman --forceExit",
"predeploy": "pnpm lint && pnpm format && pnpm build && pnpm test"
},
"keywords": [
"intento",
"conversational ai",
"chat",
"chatbot",
"chat agent",
"langchain",
"genkit"
],
"author": "Oconva <[email protected]> (https://github.com/oconva)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@swc/cli": "^0.4.0",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"@oconva/intento": "1.0.1"
}
}