-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.84 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
{
"name": "@solana-program/config",
"version": "0.0.0",
"description": "JavaScript client for the Config program",
"homepage": "https://github.com/solana-program/config#readme",
"bugs": {
"url": "https://github.com/solana-program/config/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/solana-program/config.git"
},
"files": [
"./dist/src",
"./dist/types"
],
"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"
},
"devDependencies": {
"@solana-config/oxc": "^0.1.1",
"@solana/kit": "^6.10",
"@solana/kit-plugin-litesvm": "^0.10.0",
"@solana/kit-plugin-signer": "^0.10.0",
"@types/node": "^26",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.23.0",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"peerDependencies": {
"@solana/kit": "^6.10"
},
"engines": {
"node": ">=24.0.0"
}
}