-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
66 lines (66 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@ton-community/assets-sdk",
"version": "0.0.5",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"assets-cli": "./dist/cli/cli.js"
},
"browser": {
"@aws-sdk/client-s3": false,
"@pinata/sdk": false,
"stream": false,
"boxen": false,
"chalk": false
},
"scripts": {
"build": "npm run clean && npm run compile && tsc",
"clean": "rimraf ./dist",
"compile": "ts-node ./src/jetton/contracts/compile.ts && ts-node ./src/nft/contracts/compile.ts",
"prepare": "npm run compile",
"dev": "tsc -w"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.423.0",
"@orbs-network/ton-access": "^2.3.3",
"@pinata/sdk": "^2.1.0",
"axios": "^1.6.2",
"boxen": "^5.1.2",
"dotenv": "^16.3.1",
"inquirer": "^8.0.0",
"zod": "^3.22.4"
},
"peerDependencies": {
"@ton/core": ">=0.56.0",
"@ton/crypto": ">=3.2.0",
"@ton/ton": ">=13.11.0"
},
"devDependencies": {
"@ton-community/func-js": "0.6.3",
"@ton/core": "^0.56.0",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.11.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.3.2",
"chalk": "^4.1.2",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ton-crypto": "^3.2.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-community/assets-sdk.git"
},
"homepage": "https://github.com/ton-community/assets-sdk",
"bugs": {
"url": "https://github.com/ton-community/assets-sdk/issues"
}
}