-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 2.85 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@ora-io/cle-api",
"type": "module",
"version": "0.1.5",
"packageManager": "[email protected]",
"description": "API for interacting with ORA CLEs",
"author": "Norman (nom4dv3) & Suning (msfew)",
"license": "ISC",
"homepage": "https://github.com/ora-io/cle-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ora-io/cle-api.git"
},
"bugs": {
"url": "https://github.com/ora-io/cle-api/issues"
},
"keywords": [
"cle",
"api",
"ora"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./browser": {
"types": "./dist/index.browser.d.ts",
"require": "./dist/index.browser.cjs",
"import": "./dist/index.browser.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
],
"browser": [
"./dist/index.browser.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build",
"release": "cle-scripts release && cle-scripts publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"testexec": "npm test exec",
"testprove": "npm test prove",
"testsetup": "npm test setup",
"testverify": "npm test verify"
},
"dependencies": {
"@ethereumjs/rlp": "^5.0.1",
"@murongg/utils": "^0.1.20",
"@ora-io/zkwasm-service-helper": "^1.0.2",
"assemblyscript": "^0.27.22",
"axios": "^1.6.2",
"axios-retry": "^3.9.1",
"bn.js": "^5.2.1",
"ethers": "^5.7.2",
"form-data": "^4.0.0",
"js-yaml": "^4.1.0",
"semver": "^7.5.4",
"web3-eth-contract": "^1.8.2",
"zkwasm-toolchain": "^0.0.7"
},
"devDependencies": {
"@murongg/eslint-config": "^0.2.1",
"@ora-io/cle-lib": "^0.1.3",
"@ora-io/release-scripts": "^0.0.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/bn.js": "^5.1.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"@types/semver": "^7.5.6",
"bumpp": "^9.2.1",
"eslint": "^8.54.0",
"esno": "^4.0.0",
"lint-staged": "^15.1.0",
"rimraf": "^5.0.5",
"rollup": "^3.29.3",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-esbuild": "^6.0.1",
"simple-git-hooks": "^2.9.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vite": "^5.0.2",
"vitest": "^0.34.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}