-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.91 KB
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
67
68
69
70
71
72
73
74
{
"name": "@torch-finance/dex-contract-wrapper",
"version": "0.2.11",
"description": "",
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=22"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"doc:generate": "npx typedoc --entryPointStrategy Expand src",
"build": "NODE_ENV=production tsup --config tsup.config.ts",
"dev": "NODE_ENV=development tsup --config tsup.config.ts",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"release": "changeset",
"ci:publish": "pnpm build && changeset publish --access public",
"prepare": "husky"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@ton/core": ">=0.59.1",
"@ton/crypto": ">=3.3.0",
"@ton/ton": ">=15.1.0",
"@torch-finance/core": ">=1.3.2",
"zod": ">=3.24.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.17.0",
"@ton/core": "^0.59.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^15.1.0",
"@torch-finance/core": "^1.3.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1",
"zod": "^3.24.1"
}
}