-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.2 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.2 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
{
"name": "1mb.dev",
"version": "1.3.0",
"description": "All the hats. One head. Own it end to end. Ship without waiting.",
"private": true,
"type": "module",
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint docs/assets/js/*.js",
"lint:fix": "eslint docs/assets/js/*.js --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"validate:html": "html-validate docs/*.html",
"validate:css": "stylelint docs/assets/css/*.css",
"validate": "npm run lint && npm run format && npm run validate:html && npm run validate:css",
"ci": "npm run validate && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"worker:dev": "wrangler dev --config workers/wrangler.toml",
"worker:deploy": "wrangler deploy --config workers/wrangler.toml",
"worker:tail": "wrangler tail --config workers/wrangler.toml"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.14.9",
"eslint": "^9.39.4",
"html-validate": "^10.13.1",
"prettier": "^3.8.3",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"vitest": "~3.2.0",
"wrangler": "^4.65.0"
},
"engines": {
"node": ">=22"
}
}