-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 4 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 4 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
{
"name": "ts-cloud",
"type": "module",
"version": "0.7.93",
"private": true,
"description": "A ",
"author": "Chris Breuer <chris@stacksjs.com>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/ts-cloud#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/ts-cloud.git"
},
"bugs": {
"url": "https://github.com/stacksjs/ts-cloud/issues"
},
"keywords": [
"typescript",
"starter",
"kit",
"bun",
"package"
],
"scripts": {
"build": "bun run --filter '*' build",
"compile": "bun build ./packages/ts-cloud/bin/cli.ts --compile --minify --outfile bin/cloud",
"compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64",
"compile:linux-x64": "bun build ./packages/ts-cloud/bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile bin/cloud-linux-x64",
"compile:linux-arm64": "bun build ./packages/ts-cloud/bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile bin/cloud-linux-arm64",
"compile:windows-x64": "bun build ./packages/ts-cloud/bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile bin/cloud-windows-x64.exe",
"compile:darwin-x64": "bun build ./packages/ts-cloud/bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile bin/cloud-darwin-x64",
"compile:darwin-arm64": "bun build ./packages/ts-cloud/bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/cloud-darwin-arm64",
"zip": "bun run zip:all",
"zip:all": "bun run zip:linux-x64 && bun run zip:linux-arm64 && bun run zip:windows-x64 && bun run zip:darwin-x64 && bun run zip:darwin-arm64",
"zip:linux-x64": "zip -j bin/cloud-linux-x64.zip bin/cloud-linux-x64",
"zip:linux-arm64": "zip -j bin/cloud-linux-arm64.zip bin/cloud-linux-arm64",
"zip:windows-x64": "zip -j bin/cloud-windows-x64.zip bin/cloud-windows-x64.exe",
"zip:darwin-x64": "zip -j bin/cloud-darwin-x64.zip bin/cloud-darwin-x64",
"zip:darwin-arm64": "zip -j bin/cloud-darwin-arm64.zip bin/cloud-darwin-arm64",
"fresh": "bun x rimraf node_modules/ bun.lock && bun i",
"prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip",
"test": "find test packages \\( -name '*.test.ts' -o -name '*.test.js' \\) -print | xargs bun test",
"lint": "bun x --bun --package github:pickier/pickier#95de532 pickier run . --mode lint --config pickier.config.ts --max-warnings 0",
"lint:fix": "bun x --bun --package github:pickier/pickier#95de532 pickier run . --mode lint --config pickier.config.ts --fix --max-warnings 0",
"format": "bun x --bun --package github:pickier/pickier#95de532 pickier run . --mode format --config pickier.config.ts --check",
"format:fix": "bun x --bun --package github:pickier/pickier#95de532 pickier run . --mode format --config pickier.config.ts --write",
"changelog": "bun x logsmith --verbose",
"changelog:generate": "bun x logsmith --output CHANGELOG.md",
"release": "bun x --bun bumpx prompt --recursive",
"release:patch": "bun x --bun bumpx patch --recursive --commit --tag --push --yes",
"release:minor": "bun x --bun bumpx minor --recursive --commit --tag --push",
"publish:patch": "bun x --bun bumpx patch --recursive --commit --tag --push",
"dev:docs": "bun --bun bunpress dev docs",
"build:docs": "bun --bun bunpress build docs",
"preview:docs": "bun --bun bunpress preview docs",
"deploy:docs": "bun x bunpress deploy --domain ts-cloud.stacksjs.com",
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"better-dx": "^0.2.18"
},
"overrides": {
"typescript": "^7.0.2"
},
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bun x --bun --package github:pickier/pickier#95de532 pickier run --mode lint --config pickier.config.ts --fix --max-warnings 0"
}
},
"commit-msg": "bun x gitlint --edit .git/COMMIT_EDITMSG"
},
"workspaces": [
"packages/*"
]
}