-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "contracts-orm",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Token-ax/contracts-orm.git",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "pnpm@10.12.1",
"engines": {
"node": ">=20"
},
"scripts": {
"legacy:build": "sh build.sh",
"legacy:build-run": "sh build.sh && cd site && yarn run dev",
"build": "pnpm -r --filter @tokenhost/* build",
"typecheck": "pnpm -r --filter @tokenhost/* typecheck",
"test": "pnpm build && mocha \"test/*.js\"",
"test:integration": "pnpm build && mocha \"test/integration/*.js\"",
"th": "tsx packages/cli/src/index.ts"
},
"dependencies": {
"config": "^3.3.9",
"hbs": "^4.1.1",
"prettier": "^3.8.1",
"prettier-plugin-solidity": "^2.2.1",
"solc": "0.8.33",
"web3": "^1.3.5"
},
"devDependencies": {
"@tokenhost/generator": "workspace:*",
"@tokenhost/schema": "workspace:*",
"@types/node": "^25.2.0",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}