-
-
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": "pnpm@9.15.0",
"description": "Inline critical CSS and lazy-load the rest.",
"author": "The Chromium Authors",
"contributors": [
{
"name": "Jason Miller",
"email": "developit@google.com"
},
{
"name": "Janicklas Ralph",
"email": "janicklas@google.com"
},
{
"name": "Daniel Roe",
"email": "daniel@roe.dev",
"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.11.2",
"@codspeed/vitest-plugin": "3.1.1",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "2.1.8",
"bumpp": "9.9.1",
"changelogithub": "0.13.11",
"cheerio": "1.0.0",
"eslint": "9.17.0",
"installed-check": "9.3.0",
"jsdom": "25.0.1",
"knip": "5.39.4",
"lint-staged": "15.2.11",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.2",
"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"
]
}
}