-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.48 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.48 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
{
"name": "zkcloudworker",
"version": "0.25.12",
"type": "module",
"description": "zkCloudWorker library",
"author": "zkCloudWorker",
"license": "Apache-2.0",
"homepage": "https://docs.zkcloudworker.com",
"scripts": {
"build": "rm -rf dist/lib && tsc && tsc --build tsconfig.web.json && node build-cjs.js",
"login": "yarn npm login",
"release": "yarn build && yarn npm publish --access public"
},
"keywords": [
"javascript",
"typescript",
"mina-protocol",
"zkcloudworker",
"cloudworker",
"cloud",
"proving"
],
"bugs": {
"url": "https://github.com/zkcloudworker/zkcloudworker-lib/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkcloudworker/zkcloudworker-lib.git"
},
"main": "dist/web/index.js",
"exports": {
"types": "./dist/node/index.d.ts",
"browser": "./dist/web/index.js",
"node": {
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs"
},
"default": "./dist/web/index.js"
},
"types": "./dist/node/index.d.ts",
"files": [
"dist",
"src",
"package.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@silvana-one/api": "^0.3.0",
"chalk": "^4.1.2"
},
"peerDependencies": {
"o1js": "^2.3.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"esbuild": "^0.25.1",
"o1js": "^2.3.0",
"typescript": "^5.8.2"
},
"packageManager": "yarn@4.6.0"
}