forked from cfworker/cfworker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.51 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "cfworker",
"version": "1.0.0",
"description": "Packages optimized for Cloudflare Workers",
"type": "module",
"repository": "https://github.com/cfworker/cfworker",
"author": "Jeremy Danyow <[email protected]>",
"homepage": "https://github.com/cfworker/cfworker/tree/master/README.md",
"license": "MIT",
"private": true,
"engines": {
"npm": ">= 7.18.1",
"node": ">= v16.14.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"start": "npm run start --workspace=@cfworker/examples",
"test": "npm run test --workspaces",
"deploy": "npm run deploy --workspace=@cfworker/site",
"deploy-dev": "npm run deploy-dev --workspace=@cfworker/site",
"clean": "npm run clean --workspaces",
"lint": "prettier --check \"**/*.{ts,js,json,yml}\"",
"prettier": "prettier --write \"**/*.{ts,js,json,yml}\"",
"release": "npm run clean && npm run build && changeset publish",
"reinstall": "git clean -fxd -e .env && rm -f package-lock.json && npm install",
"readme-gen": "node readme-gen.js",
"update-deps": "npm exec --workspaces --include-workspace-root --package npm-check-updates --call 'ncu -u -x husky,@cloudflare/workers-types' && git clean -fxd -e .env && rm package-lock.json && npm install"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@changesets/cli": "^2.21.0",
"husky": "^4.3.0",
"prettier": "2.5.1",
"pretty-quick": "^3.1.3"
}
}