-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
{
"name": "@jup-ag/cli",
"version": "0.7.0",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jup-ag/cli.git"
},
"type": "module",
"bin": {
"jup": "dist/index.js"
},
"files": [
"dist/index.js",
"docs",
"llms.txt",
"README.md"
],
"engines": {
"node": ">=20",
"bun": ">=1"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node --format esm --minify",
"build:binary": "bash scripts/build.sh",
"typecheck": "bunx tsc --noEmit",
"fmt": "bunx prettier --write .",
"fmt:check": "bunx prettier --check .",
"lint": "bunx oxlint src",
"test": "bun test",
"ci": "bun run fmt:check && bun run lint && bun run typecheck && bun run test",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@solana-program/token": "^0.12.0",
"@solana/keychain": "^0.6.1",
"@solana/kit": "^6.5.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"ky": "^1.14.3",
"micro-key-producer": "^0.8.5"
},
"devDependencies": {
"@types/bun": "latest",
"oxlint": "^1.53.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}