-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.15 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
48
{
"name": "@fetchai/ai-engine-sdk",
"version": "0.1.1",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc",
"build:release": "./scripts/prepare-release.cjs",
"lint": "eslint --max-warnings 0",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"imports": {
"@fetchai/ai-engine-sdk": ".",
"@fetchai/ai-engine-sdk/*": "./src/*"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./*": {
"types": "./dist/src/*.d.ts",
"default": "./dist/src/*.js"
}
},
"keywords": [],
"author": "Fetch.ai Team <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/node": "^20.12.12",
"@types/uuid": "^9.0.8",
"eslint": "^9.9.1",
"globals": "^15.2.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"dependencies": {
"node-fetch": "^3.3.2",
"uuid": "^9.0.1"
}
}