-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
{
"version": "1.2.0",
"name": "@tbela99/critical",
"description": "Generate critical CSS path from HTML pages to enable instantaneous rendering",
"type": "module",
"typings": "./dist/index.d.ts",
"main": "./dist/index.js",
"browser": "./dist/browser.js",
"author": "Thierry Bela",
"license": "MIT OR LGPL-3.0",
"bugs": {
"url": "https://github.com/tbela99/critical/issues"
},
"homepage": "https://github.com/tbela99/critical#readme",
"bin": {
"critical-cli": "bin/critical-cli.js"
},
"exports": {
".": "./dist/index.js",
"./browser": "./dist/browser.js",
"./umd": "./dist/browser-umd.js"
},
"scripts": {
"test": "node test/run.js",
"build": "rollup -c"
},
"dependencies": {
"@tbela99/css-parser": "^0.7.1",
"chalk": "^5.3.0",
"playwright": "^1.47.2",
"yargs": "^17.7.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbela99/critical.git"
},
"keywords": [
"css",
"path",
"critical",
"critical-css-path",
"critical-path",
"critical-css",
"above-the-fold"
],
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.2",
"@types/web": "^0.0.165",
"@types/yargs": "^17.0.33",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"c8": "^10.1.2",
"mocha": "^10.7.3",
"rollup": "^4.22.4",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.7.0"
}
}