-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "astro-critical-css",
"description": "Critical css integration for astro to inline above-the-fold css into HTML",
"homepage": "https://github.com/rumaan/astro-critical-css#readme",
"type": "module",
"version": "0.0.7",
"private": false,
"exports": {
".": {
"types": "./lib/dist/index.d.ts",
"import": "./lib/dist/index.js",
"require": "./lib/dist/index.cjs"
}
},
"main": "./lib/dist/index.js",
"types": "./lib/dist/index.d.ts",
"files": [
"./lib/dist/"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lib:build": "tsup-node"
},
"dependencies": {
"astro": "^5.0.4",
"critical": "^7.2.1",
"debug": "^4.4.0"
},
"devDependencies": {
"fast-glob": "^3.3.2",
"tsup": "^8.3.5"
},
"keywords": [
"astro-component",
"css performance",
"critical css",
"astro",
"astro-integration"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rumaan/astro-critical-css.git"
},
"bugs": {
"url": "https://github.com/rumaan/astro-critical-css/issues"
},
"author": "Rumaan K <hey@rumaan.dev>",
"contributors": ["Dan Levy <dan@danlevy.net>"]
}