forked from anon-aadhaar/anon-aadhaar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.05 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
{
"name": "@anon-aadhaar/core",
"version": "2.4.3",
"main": "./dist/index.js",
"types": "./src/index.ts",
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts",
"test": "npx ts-mocha test/**/*.test.ts --exit",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .prettierignore --write \"**/*.+(js|ts|json)\"",
"prepare": "cd ../.. && husky install",
"test-publish": "yarn build && yarn lint && yarn test && npm publish --dry-run",
"publishtonpm": "yarn build && yarn lint && yarn npm publish",
"bump-to": "yarn version -i "
},
"files": [
"./artifacts/verification_key.json",
"./src/*",
"./dist/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@pcd/pcd-types": "^0.10.0",
"@pcd/tsconfig": "^0.6.0",
"@types/node-forge": "^1.3.8",
"@types/snarkjs": "^0.7.6",
"@zk-email/helpers": "^6.1.1",
"buffer": "^6.0.3",
"json-bigint": "^1.0.0",
"localforage": "^1.10.0",
"pako": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"snarkjs": "^0.7.3",
"styled-components": "^6.0.0-rc.1",
"uuid": "^9.0.0",
"valid-url": "^1.0.9",
"web-worker": "1.2.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/json-bigint": "^1.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.3",
"@types/sinon": "^17.0.3",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.1",
"@types/valid-url": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"chai": "^4.3.7",
"circom_tester": "^0.0.20",
"circomlib": "^2.0.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"mocha": "^10.2.0",
"node-forge": "^1.3.1",
"prettier": "^2.8.8",
"sinon": "^17.0.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.0.4"
}
}