-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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
{
"name": "@solana-program/system",
"version": "0.12.0",
"description": "JavaScript client for the System program",
"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": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
"build:docs": "typedoc",
"dev": "vitest",
"test": "vitest run",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --check src test",
"format:fix": "prettier --write src test",
"prepublishOnly": "pnpm build"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/solana-program/system.git"
},
"bugs": {
"url": "https://github.com/solana-program/system/issues"
},
"homepage": "https://github.com/solana-program/system#readme",
"peerDependencies": {
"@solana/kit": "^6.1.0"
},
"devDependencies": {
"@solana/eslint-config-solana": "^6.0.0",
"@solana/kit-client-rpc": "^0.6.0",
"@solana/kit": "^6.1.0",
"@types/node": "^24",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"tsup": "^8.1.2",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}