-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.57 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
{
"name": "@solana-program/token-2022",
"version": "0.12.0",
"description": "JavaScript client for the Token 2022 program",
"homepage": "https://github.com/solana-program/token-2022#readme",
"bugs": {
"url": "https://github.com/solana-program/token-2022/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/solana-program/token-2022.git"
},
"files": [
"./dist/src",
"./dist/types",
"./src/"
],
"type": "commonjs",
"sideEffects": false,
"main": "./dist/src/index.js",
"module": "./dist/src/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/src/index.mjs",
"require": "./dist/src/index.js"
},
"./confidential": {
"types": "./dist/types/confidential.d.ts",
"import": "./dist/src/confidential.mjs",
"require": "./dist/src/confidential.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
"build:docs": "typedoc",
"dev": "vitest",
"test": "tsc --noEmit && vitest run",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@noble/curves": "^1.9.7",
"@solana-program/zk-elgamal-proof": "^0.2.0"
},
"devDependencies": {
"@solana-config/oxc": "^0.1.1",
"@solana-program/system": "^0.12.0",
"@solana/kit": "^6.10.0",
"@solana/kit-plugin-instruction-plan": "^0.12.1",
"@solana/kit-plugin-litesvm": "^0.12.1",
"@solana/kit-plugin-rpc": "^0.12.1",
"@solana/kit-plugin-signer": "^0.12.1",
"@solana/zk-sdk": "^0.4.2",
"@types/node": "^26",
"oxfmt": "^0.57.0",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.24.0",
"rimraf": "^6.0.1",
"tsup": "^8.1.2",
"typedoc": "^0.28.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"peerDependencies": {
"@solana/kit": "^6.10.0",
"@solana/sysvars": "^6.10.0",
"@solana/zk-sdk": "^0.4.2"
},
"peerDependenciesMeta": {
"@solana/zk-sdk": {
"optional": true
}
},
"engines": {
"node": ">=24.0.0"
}
}