-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "@zk-kit/artifacts",
"version": "1.3.1",
"description": "Utilities for downloading snark artifacts",
"scripts": {
"build": "pnpm run clean && rollup -c rollup.config.ts --configPlugin typescript",
"clean": "rimraf dist",
"test": "jest -c test/jest.config.ts",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/privacy-scaling-explorations/snark-artifacts.git"
},
"keywords": [
"snark",
"artifacts",
"circom",
"zk"
],
"contributors": [
"cedoor <[email protected]>",
"sripwoud <[email protected]"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/privacy-scaling-explorations/snark-artifacts/issues"
},
"homepage": "https://github.com/privacy-scaling-explorations/snark-artifacts/tree/main/packages/artifacts",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.node.js",
"module": "./dist/index.browser.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"browser": "./dist/index.browser.js",
"default": "./dist/index.browser.js",
"node": {
"default": "./dist/index.node.js",
"import": "./dist/index.node.js",
"require": "./dist/index.node.cjs"
},
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.10",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}