-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.98 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
75
76
{
"name": "@usecannon/builder",
"version": "2.26.1",
"description": "Assembles cannonfile.toml manifests into cannon packages.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"build:node": "tsc -p tsconfig.build.json",
"build:browser": "rollup -c",
"build": "npm run build:node && npm run build:browser",
"watch": "tsc -p tsconfig.build.json -w",
"clean": "rm -rf ./dist",
"prepublishOnly": "npm run build",
"docgen": "typedoc"
},
"keywords": [
"cannon"
],
"author": "Cannon",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/usecannon/cannon.git",
"directory": "packages/builder"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/debug": "^4.1.12",
"@types/deep-freeze": "^0.1.5",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/pako": "^2.0.3",
"@types/promise-retry": "^1.1.6",
"jest": "^29.7.0",
"rollup": "^4.39.0",
"ts-jest": "^29.3.1",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.6.1",
"typedoc-plugin-zod": "^1.4.0"
},
"dependencies": {
"@usecannon/router": "^4.1.3",
"@usecannon/web-solc": "0.5.1",
"acorn": "^8.14.1",
"axios": "^1.9.0",
"axios-retry": "^4.5.0",
"buffer": "^6.0.3",
"chalk": "^4.1.2",
"debug": "^4.4.0",
"deep-freeze": "^0.0.1",
"form-data": "^4.0.2",
"fuse.js": "^7.1.0",
"lodash": "^4.17.21",
"pako": "^2.1.0",
"promise-events": "^0.2.4",
"promise-retry": "^2.0.1",
"rfdc": "^1.4.1",
"ses": "^1.12.0",
"typestub-ipfs-only-hash": "^4.0.0",
"viem": "^2.25.1",
"zod": "^3.24.2"
},
"engines": {
"node": ">=16.0.0"
},
"engineStrict": true,
"gitHead": "81979336c4cfe5f1f8ee7677b2b968f886a20a87"
}