-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "@solana-program/token-wrap",
"version": "2.3.0",
"description": "Javascript helpers for interacting with the Solana Token Wrap program",
"author": "Anza Maintainers <maintainers@anza.xyz>",
"license": "Apache-2.0",
"sideEffects": false,
"module": "./dist/src/index.mjs",
"main": "./dist/src/index.js",
"types": "./dist/types/index.d.ts",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/src/index.mjs",
"require": "./dist/src/index.js"
}
},
"files": [
"./dist/src",
"./dist/types"
],
"scripts": {
"build": "tsc && tsup",
"build:docs": "typedoc src/index.ts",
"lint": "eslint --ext js,ts,tsx src",
"lint:fix": "eslint --fix --ext js,ts,tsx src",
"format": "prettier --write .",
"format:check": "prettier --check .",
"example:single-signer": "tsx src/examples/single-signer.ts",
"example:multisig": "tsx src/examples/multisig.ts"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solana-program/token-wrap.git"
},
"bugs": {
"url": "https://github.com/solana-program/token-wrap/issues"
},
"peerDependencies": {
"@solana/kit": "^5.0.0"
},
"dependencies": {
"@solana-program/system": "^0.9.0",
"@solana-program/token": "^0.7.0",
"@solana-program/token-2022": "^0.6.0",
"@solana/accounts": "^5.0.0",
"@solana/rpc-types": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@solana/kit": "^5.0.0",
"@tsconfig/strictest": "^2.0.7",
"@types/node": "^24.9.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"packageManager": "pnpm@10.15.0"
}