This repository was archived by the owner on Mar 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 KB
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
{
"name": "vue-windicss-preprocess",
"version": "2.2.0",
"description": "A vue loader to compile tailwindcss at build time based on windicss compiler.",
"main": "index.js",
"types": "index.d.ts",
"browser": "browser.js",
"directories": {
"examples": "examples"
},
"scripts": {
"dev": "rollup -cw",
"tsd": "tsc -p ./src --emitDeclarationOnly",
"build": "rollup -c && npm run tsd",
"build:prod": "PUBLISH=true rollup -c && npm run tsd",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push"
},
"repository": {
"type": "git",
"url": "https://github.com/voorjaar/vue-windicss-preprocess.git"
},
"keywords": [
"vue",
"vue-loader",
"tailwindcss",
"css",
"compiler"
],
"author": "Veritas Raven",
"license": "MIT",
"homepage": "https://github.com/voorjaar/vue-windicss-preprocess",
"dependencies": {
"loader-utils": "^2.0.0",
"magic-string": "^0.25.7",
"windicss": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"@rollup/plugin-sucrase": "^3.1.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/loader-utils": "^2.0.1",
"@types/node": "^14.14.32",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
}
}