-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.32 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "crittr",
"version": "2.0.2",
"description": "Crittr is a high performance critical css extraction library with a multiple url support.",
"author": "Philipp Winterle",
"license": "GPL-3.0",
"private": false,
"type": "module",
"bugs": {
"url": "https://github.com/hummal/crittr/issues"
},
"homepage": "https://hummal.github.io/crittr/",
"repository": {
"type": "git",
"url": "git+https://github.com/hummal/crittr.git"
},
"keywords": [
"critical",
"css",
"above the fold",
"atf",
"stylesheets",
"extraction",
"critical css",
"performance",
"penthouse",
"extract"
],
"engines": {
"node": ">=18"
},
"main": "index.js",
"dependencies": {
"@dynamicabot/signales": "^2.1.1",
"@types/jest": "^29.5.11",
"chalk": "^5.3.0",
"clean-css": "^5.3.3",
"css": "^3.0.0",
"debug": "^4.3.4",
"deepmerge": "^4.3.1",
"fs-extra": "^11.2.0",
"is-plain-object": "^5.0.0",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"postcss": "^8.4.33",
"postcss-sort-media-queries": "^5.2.0",
"puppeteer": "^22.11.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"release-please": "^16.12.0",
"run-queue": "^2.0.1",
"signale": "^1.4.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.2",
"cross-env": "^7.0.3",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.4"
},
"scripts": {
"test": "cross-env NODE_ENV=development node --experimental-vm-modules node_modules/jest/bin/jest.js --bail --verbose",
"build": "echo 'build is not configured for package. Skipping.'",
"prepare": "husky"
},
"files": [
"docs",
"lib",
"examples"
],
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib",
"test": "test"
}
}