-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
82 lines (82 loc) · 2.29 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
{
"name": "windicss-analysis",
"description": "Analyser for Windi CSS",
"version": "0.3.5",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"author": "antfu <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/windicss/windicss-analysis"
},
"homepage": "https://github.com/windicss/windicss-analysis",
"bugs": "https://github.com/windicss/windicss-analysis/issues",
"files": [
"dist"
],
"bin": {
"windicss-analysis": "bin/windicss-analysis.js"
},
"keywords": [
"windicss",
"tailwindcss",
"analysis"
],
"scripts": {
"dev": "esno node/dev.ts",
"start": "esno node/cli.ts",
"build": "rimraf dist && npm run build:app && npm run build:server",
"build:app": "vite build",
"build:server": "tsup node/index.ts node/cli.ts --dts --format cjs,esm",
"prepublishOnly": "npm run build",
"genreate": "npm run build:app && esno scripts/buildDemo.ts",
"release": "npx bumpp --push --tag --commit && npm publish"
},
"dependencies": {
"@windicss/plugin-utils": "^1.1.1",
"cac": "^6.7.3",
"connect": "^3.7.0",
"declass": "^0.0.1",
"fast-glob": "^3.2.6",
"fs-extra": "^10.0.0",
"sirv": "^1.0.12"
},
"devDependencies": {
"@antfu/eslint-config": "^0.6.6",
"@antfu/ni": "^0.7.0",
"@iconify/json": "^1.1.365",
"@types/connect": "^3.4.34",
"@types/fs-extra": "^9.0.11",
"@types/node": "^15.12.5",
"@types/prismjs": "^1.16.5",
"@types/serve-static": "^1.13.9",
"@vitejs/plugin-vue": "^1.2.4",
"@vue/compiler-sfc": "^3.1.2",
"@vueuse/core": "^5.0.3",
"@vueuse/router": "^5.0.3",
"chalk": "^4.1.1",
"debug": "^4.3.2",
"eslint": "^7.29.0",
"esno": "^0.7.3",
"filesize": "^6.4.0",
"fuse.js": "^6.4.6",
"gzip-size": "^6.0.0",
"open": "^8.2.1",
"prism-theme-vars": "^0.2.2",
"prismjs": "^1.24.0",
"rimraf": "^3.0.2",
"tsup": "^4.12.0",
"typescript": "^4.3.4",
"vite": "^2.3.8",
"vite-plugin-components": "^0.11.4",
"vite-plugin-icons": "^0.6.3",
"vite-plugin-pages": "^0.14.7",
"vite-plugin-windicss": "^1.1.1",
"vue": "^3.1.2",
"vue-router": "4.0.10",
"windicss": "^3.1.3"
}
}