-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.45 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
{
"name": "outrider",
"version": "0.3.0",
"type": "module",
"private": true,
"bin": {
"outrider": "src/main.ts"
},
"engines": {
"bun": ">=1.3.10"
},
"scripts": {
"cli": "bun src/main.ts",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"check": "fallow",
"check:fix": "fallow fix",
"compile": "bun scripts/build.ts && rm ~/.local/bin/outrider && cp dist/bin/outrider ~/.local/bin/outrider && outrider off && outrider on",
"generate-manifest": "bun scripts/generate-manifest.ts",
"sync-version": "bun scripts/sync-version.ts",
"version:major": "npm version major --no-git-tag-version && bun scripts/sync-version.ts",
"version:minor": "npm version minor --no-git-tag-version && bun scripts/sync-version.ts",
"version:patch": "npm version patch --no-git-tag-version && bun scripts/sync-version.ts",
"version:rc": "npm version prerelease --preid=rc --no-git-tag-version && bun scripts/sync-version.ts",
"version": "bun -p \"require('./package.json').version\"",
"release": "bun scripts/release.ts"
},
"dependencies": {
"ink": "^7.1.1",
"react": "^19.2.8"
},
"peerDependencies": {
"typescript": "^6"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"oxlint-tsgolint": "^7.0.2001",
"fallow": "^3.15.0"
}
}