-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.98 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
{
"name": "@solana-program/token",
"version": "0.15.0",
"description": "JavaScript client for the Token program",
"homepage": "https://github.com/solana-program/token#readme",
"bugs": {
"url": "https://github.com/solana-program/token/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/solana-program/token.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"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
"build:docs": "typedoc",
"dev": "vitest",
"test": "vitest run",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@solana-program/system": "^0.13.0"
},
"devDependencies": {
"@solana-config/oxc": "^0.1.1",
"@solana/kit": "^7.0.0",
"@solana/kit-client-rpc": "^0.13.0",
"@solana/kit-plugin-litesvm": "^0.13.0",
"@solana/kit-plugin-signer": "^0.13.0",
"@types/node": "^24",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.23.0",
"rimraf": "^5.0.5",
"tsup": "^8.1.2",
"typedoc": "^0.25.12",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"peerDependencies": {
"@solana/kit": "^7.0.0"
},
"engines": {
"node": ">=24.0.0"
}
}