-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "@lightprotocol/nullifier-program",
"version": "0.1.2",
"description": "SDK to interact with the rent-free nullifier program on Solana",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Lightprotocol/nullifier-program"
},
"homepage": "https://github.com/Lightprotocol/nullifier-program",
"keywords": [
"solana",
"light-protocol",
"zk-compression",
"payments-on-solana",
"x402-solana",
"nullifier"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"test": "ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts",
"ts:create-nullifier": "npx ts-node examples/action-create-nullifier.ts"
},
"peerDependencies": {
"@lightprotocol/stateless.js": ">=0.23.0"
},
"dependencies": {
"@solana/web3.js": "^1.95.0"
},
"devDependencies": {
"@coral-xyz/anchor": "0.31.1",
"@lightprotocol/stateless.js": "0.23.0-beta.5",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"dotenv": "^16.5.0",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.1.0",
"typescript": "^5.0.0"
}
}