-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "astro-purgecss",
"description": "Remove unused CSS rules from your final Astro bundle",
"version": "5.0.0",
"homepage": "https://github.com/codiume/orbit",
"bugs": "https://github.com/codiume/orbit/issues",
"author": "codiume",
"license": "MIT",
"keywords": [
"astro",
"astro-component",
"astro-integration",
"css",
"optimization"
],
"repository": {
"type": "git",
"url": "https://github.com/codiume/orbit.git",
"directory": "packages/astro-purgecss"
},
"scripts": {
"build": "tsup",
"check-types": "tsc",
"check-exports": "attw --pack . --ignore-rules false-export-default",
"typecheck": "pnpm check-types && pnpm check-exports"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"peerDependencies": {
"astro": "^5.0.0",
"purgecss": "^7.0.0"
}
}