-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.92 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
{
"name": "@entros/pulse-sdk",
"version": "3.3.1",
"description": "Client-side SDK for Entros Protocol — sensor capture, TBH generation, ZK proof construction",
"license": "MIT",
"homepage": "https://entros.io",
"repository": {
"type": "git",
"url": "git+https://github.com/entros-protocol/pulse-sdk.git"
},
"bugs": {
"url": "https://github.com/entros-protocol/pulse-sdk/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:internal": "IAM_INTERNAL_TEST=1 tsup",
"test": "vitest run",
"test:internal": "IAM_INTERNAL_TEST=1 vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"verify-publish-contents": "node scripts/verify-publish-contents.mjs",
"prepublishOnly": "npm run verify-publish-contents && npm run build"
},
"dependencies": {
"circomlibjs": "^0.1.7",
"meyda": "^5.6.3",
"pitchfinder": "^2.3.4",
"snarkjs": "^0.7.6"
},
"peerDependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@solana/spl-token": "^0.4.0",
"@solana/wallet-adapter-base": "^0.9.0",
"@solana/web3.js": "^1.98.0"
},
"peerDependenciesMeta": {
"@coral-xyz/anchor": {
"optional": true
},
"@solana/spl-token": {
"optional": true
},
"@solana/web3.js": {
"optional": true
},
"@solana/wallet-adapter-base": {
"optional": true
}
},
"devDependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.0",
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"tsx": "^4.22.0",
"typescript": "^6.0.2",
"vitest": "^3.0.0",
"wavefile": "^11.0.0"
},
"overrides": {
"uuid": "^14.0.0"
}
}