-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.02 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.02 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
{
"name": "chobble-builder",
"version": "1.0.0",
"type": "module",
"packageManager": "bun@1.2.13",
"description": "Chobble site builder — merges client content with template and builds via GitHub Actions",
"scripts": {
"preinstall": "node -e \"if(!process.env.npm_config_user_agent.startsWith('bun')){console.error('Use bun, not npm/yarn/pnpm');process.exit(1)}\"",
"serve": "bun scripts/serve.js",
"build": "bun scripts/build.js",
"prepare-dev": "bun scripts/prepare-dev.js",
"sync-files": "bun scripts/sync-files.js",
"watch": "bun scripts/watch.js",
"test": "bun scripts/test.js",
"precommit": "bun scripts/precommit.js",
"lint": "bunx @biomejs/biome check --config-path=biome.json --error-on-warnings scripts/",
"lint:fix": "bunx @biomejs/biome check --config-path=biome.json --write scripts/",
"cpd": "bunx jscpd"
},
"imports": {
"#fp": "@chobble/js-toolkit/fp",
"#fp/*": "@chobble/js-toolkit/fp/*"
},
"devDependencies": {
"@chobble/js-toolkit": "file:./chobble-template/packages/js-toolkit"
}
}