-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "beasties-root",
"private": true,
"packageManager": "[email protected]",
"description": "Inline critical CSS and lazy-load the rest.",
"author": "The Chromium Authors",
"contributors": [
{
"name": "Jason Miller",
"email": "[email protected]"
},
{
"name": "Janicklas Ralph",
"email": "[email protected]"
},
{
"name": "Daniel Roe",
"email": "[email protected]",
"url": "https://roe.dev"
}
],
"license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"scripts": {
"build": "pnpm -r build",
"build:main": "pnpm --filter beasties run build",
"build:webpack": "pnpm --filter beasties-webpack-plugin run build",
"postinstall": "simple-git-hooks && pnpm -r build:stub",
"docs": "pnpm -r docs",
"lint": "eslint .",
"release": "bumpp -r && pnpm -r publish",
"test": "vitest --coverage",
"test:types": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "3.12.2",
"@codspeed/vitest-plugin": "4.0.0",
"@types/node": "22.10.5",
"@vitest/coverage-v8": "2.1.8",
"bumpp": "9.9.3",
"changelogithub": "0.13.11",
"cheerio": "1.0.0",
"eslint": "9.17.0",
"installed-check": "9.3.0",
"jsdom": "26.0.0",
"knip": "5.42.0",
"lint-staged": "15.3.0",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"resolutions": {
"beasties": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}