-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.9 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
{
"name": "@xorddotcom/shield",
"version": "0.2.2",
"description": "p align=\"center\" > <img src=\"https://xord.notion.site/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F283b98b7-fdae-4e5a-acaf-248242084e4a%2FICON.png?table=block&id=5306223c-a4f7-45d1-9f54-b9a5f4004cd6&spaceId=49976899-64a1-40fd-a3e6-c2ad82ad7aa1&width=250&userId=&cache=v2\" alt=\"shield\" width=\"200\" height=\"200\"> </p> Shield is a development framework for circom developers but we plan it to other languages such as CAIRO, SNARKYJS etc.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/src/index.js",
"build": "npm run clean && tsc",
"build:dev": "npm run build && sudo rm -f /usr/local/bin/shield && sudo rm -rf /home/sleepyqadir/.nvm/versions/node/v16.17.0/bin/shield && npm run setup",
"clean": "rm -rf dist/",
"commit": "git-cz",
"setup": "npm install -g",
"lint": "eslint 'src/**/*.ts' 'utils/**/*.ts' 'test/**/*.ts' --fix",
"test": "npm run build:dev && jest --detectOpenHandles",
"semantic-release": "semantic-release --branches main",
"postinstall": "node scripts/postinstall.js"
},
"bin": {
"shield": "dist/src/index.js"
},
"keywords": [
"shield",
"cli",
"circom",
"circomlib",
"snarkjs",
"zero-knowledge",
"web3"
],
"author": "Khuzama Shahid(@khuzama98), Abdul Qadir(@sleepyqadir)",
"license": "MIT",
"dependencies": {
"@iden3/binfileutils": "^0.0.11",
"@phated/unionfs": "^4.5.0",
"@sentry/integrations": "^7.11.1",
"@sentry/node": "^7.11.1",
"bfj": "^7.0.2",
"chai": "^4.3.6",
"chalk": "^4.1.2",
"circom2": "^0.2.8",
"commander": "^9.4.0",
"concat-stream": "^2.0.0",
"enquirer": "^2.3.6",
"fastfile": "^0.0.20",
"ffjavascript": "^0.2.56",
"find-up": "^4.1.0",
"fs-extra": "^10.1.0",
"memfs": "^3.4.7",
"ora": "^5.4.1",
"r1csfile": "^0.0.16",
"shelljs": "^0.8.5",
"shimmer": "^1.2.1",
"snarkjs": "^0.5.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/concat-stream": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.6",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.3",
"@types/shelljs": "^0.8.11",
"@types/shimmer": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/xorddotcom/SHIELD.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}