-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 994 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
{
"type": "module",
"name": "predictionguard",
"author": "Prediction Guard",
"version": "0.32.0",
"license": "Apache 2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "tsc && typedoc --gitRevision main src/index.ts",
"build": "tsc",
"test": "eslint . && mocha test --no-deprecation",
"docs": "typedoc --gitRevision main src/index.ts"
},
"files": [
"dist/*",
"docs/*",
"examples/*",
"src/*"
],
"dependencies": {
"fetch-sse": "^1.0.23",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.7",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"mockttp": "^3.15.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.18.0"
}
}