-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
100 lines (100 loc) · 2.31 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
{
"name": "@ora-io/cle-cli",
"version": "0.1.6",
"packageManager": "[email protected]",
"description": "",
"homepage": "https://github.com/ora-io/cle-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ora-io/cle-cli.git",
"directory": "packages/cle-cli"
},
"bugs": {
"url": "https://github.com/ora-io/cle-cli/issues"
},
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"cle": "bin/cle.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"clean": "rimraf dist",
"build": "unbuild",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build",
"release": "cle-scripts release && cle-scripts publish",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@ora-io/cle-lib": "^0.1.3"
},
"dependencies": {
"@ora-io/cle-api": "^0.1.5",
"@ora-io/zkwasm-service-helper": "^1.0.3",
"api": "^6.1.1",
"await-to-js": "^3.0.0",
"axios": "^1.5.1",
"axios-retry": "^3.8.0",
"cac": "^6.7.14",
"create-cle": "^0.1.1",
"ethers": "^5.7.2",
"form-data": "^4.0.0",
"nanoid": "^5.0.1",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"ts-md5": "^1.3.1",
"unconfig": "^0.3.11"
},
"devDependencies": {
"@murongg/eslint-config": "^0.2.1",
"@ora-io/cle-lib": "^0.1.3",
"@ora-io/release-scripts": "^0.0.1",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.6",
"@types/prompts": "^2.4.6",
"@types/semver": "^7.5.3",
"assemblyscript": "^0.27.24",
"consola": "^3.2.3",
"eslint": "^8.57.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.2",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.3.1",
"zkwasm-toolchain": "^0.0.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}