-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.21 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "arashi",
"version": "1.11.1",
"description": "Git worktree manager for meta-repositories - The eye of the storm for your development workflow",
"keywords": [
"cli",
"development",
"development-tools",
"git",
"git-worktree",
"meta-repo",
"monorepo",
"multi-repo",
"worktree"
],
"homepage": "https://arashi.haphazard.dev",
"bugs": {
"url": "https://github.com/corwinm/arashi/issues"
},
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/corwinm/arashi.git"
},
"bin": {
"arashi": "./bin/arashi.js"
},
"files": [
"bin/arashi",
"bin/arashi.js",
"bin/arashi.bat",
"bin/arashi.ps1",
"scripts/postinstall.js",
"schema/config.schema.json",
"README.md",
"LICENSE"
],
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"type": "module",
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --compile --minify --outfile bin/arashi.bin",
"build:debug": "bun build src/index.ts --compile --sourcemap --outfile bin/arashi.bin",
"build:all": "bun run build:mac && bun run build:linux && bun run build:windows",
"build:mac": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile bin/arashi-macos-arm64",
"build:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile bin/arashi-linux-x64",
"build:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile bin/arashi-windows-x64.exe",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "oxlint -D no-explicit-any .",
"lint:fix": "oxlint --fix -D no-explicit-any .",
"lint:ci": "oxlint --format github -D no-explicit-any .",
"schema:generate": "ts-json-schema-generator --tsconfig tsconfig.schema.json --path src/lib/config.ts --type Config --expose export --jsDoc extended --out schema/config.schema.json",
"schema:publish": "bun run schema:generate && oxfmt --config .oxfmtrc.json --write schema/config.schema.json",
"schema:check": "bun run schema:publish && git diff --exit-code -- schema/config.schema.json",
"format": "oxfmt --config .oxfmtrc.json --write .",
"format:check": "oxfmt --config .oxfmtrc.json --check .",
"quality:changed": "bun run scripts/quality/changed-files-quality.ts",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "bun run schema:publish",
"prepare": "husky"
},
"devDependencies": {
"@inquirer/prompts": "^7.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/bun": "latest",
"bun-types": "latest",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"lint-staged": "^16.2.7",
"ora": "^8.1.1",
"oxfmt": "0.28.0",
"oxlint": "1.43.0",
"semantic-release": "^24.2.0",
"ts-json-schema-generator": "2.4.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs,json,md,yml,yaml}": "oxfmt --config .oxfmtrc.json --write"
},
"engines": {
"node": ">=18.0.0"
}
}