-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 2.8 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "unplugin-unocss-config",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@9.9.0",
"description": "Use uno config in run-time",
"license": "MIT",
"homepage": "https://github.com/unpreset/unplugin-unocss-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unpreset/unplugin-unocss-config.git"
},
"bugs": {
"url": "https://github.com/unpreset/unplugin-unocss-config/issues"
},
"keywords": [
"unpreset",
"unocss",
"unocss-config",
"unplugin",
"vite",
"nuxt-module"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite": {
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./nuxt": {
"import": "./dist/nuxt.js",
"require": "./dist/nuxt.cjs"
},
"./types": {
"import": "./dist/types.js",
"require": "./dist/types.cjs"
},
"./client": {
"types": "./client.d.ts"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"client.d.ts",
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"build:fix": "esno scripts/postbuild.ts",
"lint": "eslint .",
"play": "pnpm -C playground run dev",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"peerDependencies": {
"@nuxt/kit": "^3",
"@nuxt/schema": "^3",
"vite": ">=3"
},
"peerDependenciesMeta": {
"@nuxt/kit": {
"optional": true
},
"@nuxt/schema": {
"optional": true
},
"vite": {
"optional": true
}
},
"dependencies": {
"unplugin": "^1.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@types/debug": "catalog:",
"@types/fs-extra": "catalog:",
"@types/node": "catalog:",
"@unocss/config": "catalog:",
"@unocss/core": "catalog:",
"@unocss/preset-mini": "catalog:",
"bumpp": "catalog:",
"chalk": "catalog:",
"debug": "catalog:",
"eslint": "catalog:",
"esno": "catalog:",
"fast-glob": "catalog:",
"fs-extra": "catalog:",
"lint-staged": "catalog:",
"nodemon": "catalog:",
"rimraf": "catalog:",
"rollup": "catalog:",
"simple-git-hooks": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"unplugin": "^1.6.0",
"vite": "catalog:",
"vitest": "catalog:",
"webpack": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"stackblitz": {
"startCommand": "pnpm build && pnpm -C playground run dev"
}
}