-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 992 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
{
"private": false,
"name": "opencopilot-sdk",
"engines": {
"node": ">=14"
},
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/openchatai/copilot-sdk"
},
"scripts": {
"start": "tsc && node dist/index.js",
"start:watch": "nodemon --ext ts --exec npm start",
"test": "mocha --require ts-node/register test/**/*.test.ts",
"build": "tsc",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.24",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.5",
"chai": "^4.3.10",
"jest": "^27.0.6",
"mocha": "^10.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"husky": "^8.0.0"
},
"dependencies": {
"axios": "^1.6.2"
}
}