-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.55 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
{
"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.13.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.9.2",
"@codspeed/vitest-plugin": "3.1.1",
"@types/node": "22.9.1",
"@vitest/coverage-v8": "2.1.5",
"bumpp": "9.8.1",
"cheerio": "1.0.0",
"css-what": "6.1.0",
"eslint": "9.15.0",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"microbundle": "0.15.1",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.2",
"vitest": "2.1.5"
},
"resolutions": {
"beasties": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}