-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.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
{
"name": "chobble-client",
"version": "1.0.0",
"type": "module",
"packageManager": "bun@1.2.13",
"description": "Chobble.com client website",
"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",
"update-pages": "bun scripts/update-pages.js",
"fetch-google-reviews": "bun scripts/fetch-google-reviews.js",
"screenshot": "bun scripts/screenshot.js",
"clean": "rm -rf .build _site",
"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"
}
}