-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "@ainft-team/ainft-js",
"main": "dist/ainft.js",
"types": "dist/ainft.d.ts",
"version": "2.1.3",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"dev": "rm -rf ./dist && tsc",
"test": "NODE_ENV=dev jest",
"docs": "yarn build && typedoc --out docs"
},
"files": [
"/dist"
],
"repository": "[email protected]:ainft-team/ainft-js.git",
"keywords": [
"ainetwork",
"ain",
"TypeScript",
"AINFT",
"NFT",
"SDK"
],
"author": "AINFT Team",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/form-data": "^2.5.0",
"@types/jest": "^27.4.1",
"jest": "^29.7.0",
"ts-jest": "^29.0.0",
"typedoc": "0.22.15",
"typedoc-plugin-remove-references": "^0.0.6",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typedoc-theme-hierarchy": "^1.3.5",
"typescript": "^4.6.3"
},
"dependencies": {
"@ainblockchain/ain-js": "^1.13.0",
"@ainblockchain/ain-util": "^1.1.9",
"@ainize-team/ainize-js": "^1.3.1",
"@types/lodash": "^4.14.200",
"axios": "^0.26.1",
"fast-json-stable-stringify": "^2.1.0",
"form-data": "^4.0.0",
"lodash": "^4.17.21"
}
}