-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 1.32 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
{
"name": "@affixio/sdk",
"version": "2.0.0",
"description": "Complete TypeScript SDK for AffixIO Zero-Knowledge Proof API - All circuits, all endpoints, production-ready",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:circuits": "jest test/circuits.test.ts",
"test:api": "jest test/api-endpoints.test.ts",
"test:integration": "jest test/integration.test.ts",
"test:deployment": "jest test/npm-deployment.test.ts",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build && npm test",
"docs": "typedoc src/index.ts"
},
"keywords": [
"zero-knowledge-proof",
"zkp",
"zk-snark",
"privacy",
"cryptography",
"api-client",
"typescript"
],
"author": "AffixIO",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0",
"typedoc": "^0.25.0"
},
"repository": {
"type": "git",
"url": "https://github.com/affixio/sdk"
}
}