-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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": "postcss-windicss",
"version": "1.0.0",
"description": "PostCSS plugin for Windi CSS",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"funding": "https://github.com/sponsors/antfu",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"sideEffects": false,
"bugs": {
"url": "https://github.com/antfu/postcss-windicss/issues"
},
"homepage": "https://github.com/antfu/postcss-windicss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/postcss-windicss.git"
},
"keywords": [
"postcss",
"postcss-plugin",
"windicss"
],
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --format cjs --dts",
"release": "bumpp --commit --push --tag",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"dependencies": {
"@windicss/plugin-utils": "^0.16.0",
"chokidar": "^3.5.1",
"debug": "^4.3.2",
"exit-hook": "^2.2.1",
"windicss": "^3.0.12"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.6.5",
"@antfu/ni": "^0.7.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"bumpp": "^6.0.6",
"eslint": "^7.27.0",
"eslint-plugin-jest": "^24.3.6",
"esno": "^0.5.0",
"git-ensure": "^0.1.0",
"jest": "^27.0.1",
"postcss": "^8.3.0",
"ts-jest": "^27.0.1",
"tsup": "^4.11.1",
"typescript": "^4.3.2"
}
}