-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.14 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
{
"bin": {
"solana-mobile": "dist/cli.mjs"
},
"bugs": {
"url": "https://github.com/solana-mobile/solana-mobile-cli/issues"
},
"dependencies": {
"@clack/prompts": "1.6.0",
"commander": "14.0.3",
"create-solana-dapp": "0.0.0-canary-20260806144555",
"zod": "4.4.3"
},
"description": "CLI for Solana Mobile development.",
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/cli": "2.30.0",
"@intellectronica/ruler": "0.3.38",
"@solana-mobile/mobile-wallet-adapter-protocol": "2.3.0",
"@solana-mobile/mobile-wallet-adapter-protocol-kit": "0.4.0",
"@solana-program/system": "0.13.0",
"@solana/kit": "7.1.1",
"@types/bun": "1.3.13",
"lefthook": "2.1.5",
"pkg-pr-new": "0.0.62",
"publint": "0.3.18",
"tsdown": "0.21.7",
"typescript": "6.0.2"
},
"exports": {
"./templates": {
"import": {
"types": "./dist/templates.d.mts",
"default": "./dist/templates.mjs"
},
"require": {
"types": "./dist/templates.d.cts",
"default": "./dist/templates.cjs"
}
}
},
"files": [
"dist",
"templates"
],
"homepage": "https://github.com/solana-mobile/solana-mobile-cli#readme",
"license": "Apache-2.0",
"name": "solana-mobile",
"repository": {
"type": "git",
"url": "git+https://github.com/solana-mobile/solana-mobile-cli.git"
},
"scripts": {
"build": "bun run build:playground && tsdown",
"build:playground": "bun scripts/build-playground-page.ts",
"changeset": "changeset",
"check-types": "tsc -b --noEmit",
"ci": "bun run build && bun run lint && bun run check-types && bun run test",
"dev": "bun run src/cli.ts",
"lint": "biome check --error-on-warnings",
"lint:fix": "biome check --error-on-warnings --write",
"prepare": "lefthook install",
"release": "changeset publish",
"ruler:apply": "ruler apply --local-only",
"test": "bun test test/*.test.ts",
"test:integration": "bun test test/integration/*.test.ts",
"test:watch": "bun test test/*.test.ts --watch",
"version": "changeset version && bun lint:fix"
},
"type": "module",
"version": "0.4.0"
}