-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.81 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.81 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
{
"name": "pump-kit",
"version": "0.2.5",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./simple": {
"types": "./dist/types/simple.d.ts",
"import": "./dist/simple.js"
}
},
"files": [
"dist",
"README.md",
"@pump-kit.png",
"llms.txt",
"metadata/actions-registry.json"
],
"license": "MIT",
"engines": {
"node": ">=20",
"bun": ">=1.3.0"
},
"scripts": {
"dev:typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "oxlint --deny-warnings src tests scripts examples",
"lint:fix": "oxlint --fix --deny-warnings src tests scripts examples",
"build:js": "bun build ./src/index.ts --outdir dist --format esm --minify",
"build:binary": "mkdir -p dist/bin && PUMP_KIT_VERSION=$(node -p \"require('./package.json').version\") bun build --compile --env='PUMP_KIT_*' --outfile dist/bin/pump-kit ./src/bin/pump-kit.ts",
"build:types": "tsc -p tsconfig.build.json",
"build": "rm -rf dist && bun run build:js && bun run build:types",
"ci": "bun run dev:typecheck && bun run lint && bun run test:unit && bun run test:integration && bun run build",
"release:cut": "bun run scripts/cut-release.ts",
"release:cut:patch": "bun run scripts/cut-release.ts patch",
"release:cut:minor": "bun run scripts/cut-release.ts minor",
"release:cut:major": "bun run scripts/cut-release.ts major",
"release:one": "./scripts/release-one.sh",
"release:one:patch": "./scripts/release-one.sh patch",
"release:one:minor": "./scripts/release-one.sh minor",
"release:one:major": "./scripts/release-one.sh major",
"release:ship": "bun run scripts/ship-release.ts",
"release:ship:patch": "bun run scripts/ship-release.ts patch",
"release:ship:minor": "bun run scripts/ship-release.ts minor",
"release:ship:major": "bun run scripts/ship-release.ts major",
"release": "bun run scripts/release.ts",
"release:patch": "bun run scripts/release.ts patch",
"release:minor": "bun run scripts/release.ts minor",
"release:major": "bun run scripts/release.ts major",
"release:dry-run": "bun run scripts/release.ts patch --dry-run",
"codegen": "bun run scripts/codama-generate.ts",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@codama/nodes-from-anchor": "^1.2.9",
"@codama/renderers-js": "^1.4.3",
"@types/bun": "^1.3.1",
"@types/node": "^24.9.2",
"codama": "^1.3.7",
"oxlint": "^1.49.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@solana/kit": "^6.0.0",
"@solana/spl-token": "^0.4.14",
"buffer": "^6.0.3"
}
}