-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.54 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@solsticeprotocol/sdk",
"version": "1.2.0",
"description": "Zero-Knowledge Identity Verification SDK for Solana",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"files": [
"dist/"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"dev": "rollup -c rollup.config.mjs -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage-ci": "jest --coverage --coverageReporters=text --coverageReporters=lcov --coverageReporters=html --coverageReporters=json --coverageReporters=json-summary",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "tsc --noEmit",
"docs": "typedoc src/index.ts"
},
"keywords": [
"zero-knowledge",
"identity",
"solana",
"blockchain",
"privacy",
"zk-proofs",
"aadhaar",
"kyc"
],
"author": "Solstice Protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Solstice-Protocol/sdk.git"
},
"bugs": {
"url": "https://github.com/Solstice-Protocol/sdk/issues"
},
"homepage": "https://github.com/Solstice-Protocol/sdk#readme",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@solana/wallet-adapter-base": ">=0.9.0",
"@solana/web3.js": "^1.87.6",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"circomlibjs": "^0.1.7",
"crypto-js": "^4.2.0",
"fast-xml-parser": "^5.3.0",
"jszip": "^3.10.1",
"snarkjs": "^0.7.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.1.0",
"rollup": "^4.6.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@solana/wallet-adapter-base": ">=0.9.0"
},
"engines": {
"node": ">=16.0.0"
}
}