-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1012 Bytes
/
package.json
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
{
"scripts": {
"format": "npx prettier --ignore-path .gitignore --write .",
"update": "npm run update:bun && npm run update:cfa && npm run update:cfna && npm run update:dashboard && npm run update:ncjs && npm run update:nesm",
"update:bun": "(cd runtimes/bun-script && bun install)",
"update:cfa": "(cd runtimes/cloudflare-worker-actual && npm install)",
"update:cfna": "(cd runtimes/cloudflare-worker-native-actual && npm install)",
"update:dashboard": "(cd dashboard && npm install)",
"update:ncjs": "(cd runtimes/node-cjs-script && npm install)",
"update:nesm": "(cd runtimes/node-esm-script && npm install)"
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson",
"prettier-plugin-tailwindcss"
],
"semi": false,
"singleQuote": true,
"tailwindConfig": "./dashboard/tailwind.config.js"
},
"devDependencies": {
"prettier": "^3.3.2",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}