-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.3 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@pathscale/rollup-plugin-vue3-ui-css-purge",
"version": "0.0.41",
"description": "Automatically remove unused CSS when using vue3-ui",
"keywords": [
"rollup",
"rollup-plugin",
"vue",
"vue3",
"ui",
"vue3-ui"
],
"homepage": "https://github.com/pathscale/rollup-plugin-vue3-ui-css-purge#readme",
"bugs": {
"url": "https://github.com/pathscale/rollup-plugin-vue3-ui-css-purge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pathscale/rollup-plugin-vue3-ui-css-purge.git"
},
"license": "MIT",
"author": "Anton Kudryavtsev <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "shx rm -rf dist",
"build": "rollup -c --environment NODE_ENV:production",
"commit": "commit",
"prelint": "prettier -l --write .",
"lint": "eslint --ext .ts,.js --fix .",
"prepublishOnly": "npm run build",
"release": "semantic-release",
"pretest": "npm run lint",
"test": "jest"
},
"dependencies": {
"@babel/parser": "^7.12.11",
"@babel/traverse": "^7.12.12",
"@fullhuman/postcss-purgecss": "^3.1.3",
"@rollup/pluginutils": "^4.1.0",
"fs-extra": "^9.0.1",
"htmlparser2": "^6.0.0",
"postcss": "^8.2.2",
"postcss-color-converter": "^1.0.1",
"query-string": "^6.13.8",
"resolve": "^1.19.0",
"rollup": "^2.35.1",
"tslib": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/prompt-cli": "^11.0.0",
"@pathscale/bulma-extensions-css-var": "0.0.49-3",
"@bulvar/bulma": "^0.11.24",
"@pathscale/vue3-ui": "^0.8.146",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^8.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/fs-extra": "^9.0.6",
"@types/htmlparser2": "^3.10.2",
"@types/jest": "^26.0.19",
"@types/node": "*",
"@types/resolve": "^1.17.1",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"@vue/compiler-sfc": "3.0.7",
"builtin-modules": "^3.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^25.0.1",
"fast-glob": "^3.2.4",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-styles": "^3.12.1",
"rollup-plugin-vue": "^6.0.0",
"semantic-release": "^17.3.1",
"shx": "^0.3.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"vue": "3.0.7"
},
"peerDependencies": {
"rollup": "^2.2.0",
"typescript": "^4.0.0"
},
"engines": {
"node": ">=10"
}
}