@entros/pulse-sdk 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@entros/pulse-sdk",
3
+ "version": "1.0.0",
4
+ "description": "Client-side SDK for Entros Protocol — sensor capture, TBH generation, ZK proof construction",
5
+ "license": "MIT",
6
+ "homepage": "https://entros.io",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/iam-protocol/pulse-sdk.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/iam-protocol/pulse-sdk/issues"
13
+ },
14
+ "main": "dist/index.js",
15
+ "module": "dist/index.mjs",
16
+ "types": "dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.mjs",
21
+ "require": "./dist/index.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsup",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest",
31
+ "typecheck": "tsc --noEmit",
32
+ "verify-publish-contents": "node scripts/verify-publish-contents.mjs",
33
+ "prepublishOnly": "npm run verify-publish-contents && npm run build"
34
+ },
35
+ "dependencies": {
36
+ "circomlibjs": "^0.1.7",
37
+ "meyda": "^5.6.3",
38
+ "pitchfinder": "^2.3.4",
39
+ "snarkjs": "^0.7.6"
40
+ },
41
+ "peerDependencies": {
42
+ "@coral-xyz/anchor": "^0.32.1",
43
+ "@solana/spl-token": "^0.4.0",
44
+ "@solana/wallet-adapter-base": "^0.9.0",
45
+ "@solana/web3.js": "^1.98.0"
46
+ },
47
+ "peerDependenciesMeta": {
48
+ "@coral-xyz/anchor": {
49
+ "optional": true
50
+ },
51
+ "@solana/spl-token": {
52
+ "optional": true
53
+ },
54
+ "@solana/web3.js": {
55
+ "optional": true
56
+ },
57
+ "@solana/wallet-adapter-base": {
58
+ "optional": true
59
+ }
60
+ },
61
+ "devDependencies": {
62
+ "@coral-xyz/anchor": "^0.32.1",
63
+ "@solana/spl-token": "^0.4.14",
64
+ "@solana/web3.js": "^1.98.0",
65
+ "@types/node": "^22.0.0",
66
+ "tsup": "^8.0.0",
67
+ "typescript": "^6.0.2",
68
+ "vitest": "^3.0.0"
69
+ }
70
+ }