-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
68 lines (68 loc) · 1.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
{
"name": "nuxt-purgecss",
"version": "2.0.0",
"description": "Drop superfluous CSS! A neat PurgeCSS wrapper for Nuxt.js",
"keywords": [
"nuxtjs",
"nuxt",
"nuxt-module",
"purgecss",
"css"
],
"repository": "Developmint/nuxt-purgecss",
"license": "MIT",
"contributors": [
{
"name": "Alexander Lichter <[email protected]>"
}
],
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint --ext .js,.ts,.vue --fix",
"lint:all": "yarn lint .",
"release": "yarn test && release-it",
"test": "yarn vitest run"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@nuxt/kit": "^3.2.0",
"consola": "^2.15.3",
"glob-all": "^3.3.1",
"purgecss": "^5.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/test-utils": "3.2.0",
"@nuxtjs/eslint-config-typescript": "11.0.0",
"@release-it/conventional-changelog": "5.1.1",
"c8": "^7.13.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"husky": "8.0.3",
"lint-staged": "13.1.4",
"nuxt": "npm:[email protected]",
"release-it": "15.6.1",
"vitest": "^0.29.8"
},
"resolutions": {
"nuxt-purgecss": "link:./"
},
"publishConfig": {
"access": "public"
}
}