-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "@ton-api/client",
"version": "0.4.0",
"description": "Autogenerated SDK for tonapi.io",
"keywords": [
"TON",
"Blockchain",
"API",
"TonApi"
],
"license": "MIT",
"author": "Ton Apps",
"authors": [
{
"name": "mois-ilya"
}
],
"main": "./dist/client.js",
"types": "./dist/client.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/tonkeeper/tonapi-js/issues"
},
"homepage": "https://github.com/tonkeeper/tonapi-js/blob/main/packages/client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tonkeeper/tonapi-js.git"
},
"scripts": {
"build": "npm run clean && npx tsx ./src/generate.ts && npm run test && npx tsc",
"patch": "npm run build && git diff --quiet || (npm version patch && npm run build)",
"prepublishOnly": "npm run build && git diff --quiet || (echo 'Error: Uncommitted changes detected.' && exit 1)",
"test": "jest --runInBand",
"clean": "rimraf ./dist"
},
"devDependencies": {
"@ton/core": "^0.59.0",
"@types/jest": "^29.5.12",
"@types/json-bigint": "^1.0.4",
"@types/node": "^20.14.2",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lodash": "^4.17.21",
"patch-package": "^8.0.0",
"rimraf": "^5.0.7",
"swagger-typescript-api": "13.0.9",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@ton/core": ">=0.59.0"
},
"dependencies": {
"core-js-pure": "^3.38.0"
}
}