-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
85 lines (85 loc) · 2.63 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
84
85
{
"name": "windicss-webpack-plugin",
"version": "1.8.0",
"packageManager": "[email protected]",
"license": "MIT",
"author": {
"name": "Harlan Wilton",
"email": "[email protected]"
},
"exports": {
"import": "./dist/plugin.mjs",
"require": "./dist/plugin.cjs",
"types": "./dist/plugin.d.ts"
},
"main": "./dist/plugin.cjs",
"module": "./dist/plugin.mjs",
"types": "./dist/plugin.d.ts",
"homepage": "https://github.com/windicss/windicss-webpack-plugin",
"bugs": "https://github.com/windicss/windicss-webpack-plugin/issues",
"repository": {
"type": "git",
"url": "https://github.com/windicss/windicss-webpack-plugin"
},
"files": [
"dist"
],
"scripts": {
"release": "bumpp package.json --commit --push --tag",
"build": "unbuild",
"stub": "unbuild --stub",
"test": "vitest",
"lint": "eslint \"{src,test}/**/*.{ts,vue,json,yml}\"",
"lint:fix": "npm run lint -- --fix",
"dev:craco": "yarn build && cd example/craco && yarn start",
"dev:svelte": "yarn build && cd example/svelte && yarn dev",
"dev:next": "yarn build && cd example/next && yarn dev",
"dev:nuxt": "yarn build && cd example/nuxt && yarn dev",
"build:nuxt": "yarn build && nuxt build example/nuxt",
"start:nuxt": "yarn build && nuxt start example/nuxt",
"dev:vue2": "yarn build && cd example/vue2 && yarn serve",
"dev:vue3": "yarn build && cd example/vue3 && yarn serve",
"dev:vue-nx": "yarn build && cd example/vue-cli-next && yarn serve"
},
"dependencies": {
"@windicss/plugin-utils": "^1.9.1",
"debug": "^4.3.4",
"get-port": "^6.1.2",
"loader-utils": "^2.0.0",
"lodash": "^4.17.21",
"pathe": "^1.1.0",
"webpack-virtual-modules": "^0.5.0",
"windicss": "^3.5.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.42.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@intlify/vue-i18n-loader": "^4.2.0",
"@types/color-string": "^1.5.0",
"@types/debug": "^4.1.7",
"@types/loader-utils": "^2.0.3",
"@types/lodash": "^4.14.191",
"@types/webpack": "^4.41.31",
"babel-loader": "^8.2.3",
"bumpp": "^8.2.1",
"css-loader": "^5.2.7",
"eslint": "^8.49.0",
"less": "^4.1.3",
"less-loader": "^7.3.0",
"postcss-loader": "^5.3.0",
"sass": "^1.58.0",
"sass-loader": "^10.2.0",
"schema-utils": "^3.1.1",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.1.1",
"vitest": "^0.28.4",
"vue-loader": "^15.9.8",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.7.14",
"webpack": "^4.46.0"
}
}