-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.21 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
49
50
51
52
{
"name": "@ainize-team/ainize-sdk",
"version": "0.0.1",
"main": "dist/ainize.js",
"types": "dist/ainize.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"dev": "rm -rf ./dist && tsc",
"test": "NODE_ENV=dev jest --passWithNoTests",
"docs": "yarn build && typedoc --options typedoc.json --out docs"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ainize-team/ainize-sdk.git"
},
"keywords": [
"ainize",
"ainetwork",
"ain",
"TypeScript",
"SDK",
"API"
],
"author": "AINIZE Team",
"license": "MIT",
"files": [
"/dist"
],
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.197",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typedoc": "^0.23.17",
"typedoc-plugin-remove-references": "^0.0.6",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typedoc-theme-hierarchy": "^3.0.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@ainblockchain/ain-js": "^1.3.5",
"axios": "^0.26.1",
"express": "^4.18.2",
"fast-json-stable-stringify": "^2.1.0",
"lodash": "^4.17.21",
"node-cache": "^5.1.2"
}
}