-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "@xiaoshuapp/theme",
"version": "1.0.5",
"repository": {
"type": "git",
"url": "https://github.com/xiaoshuapp/theme.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild && run-s gen && run-s replace-imports",
"dev": "unbuild --stub && run-s gen",
"gen": "run-p gen:*",
"gen:manifests": "vite-node ./scripts/genManifest.ts",
"replace-imports": "vite-node ./scripts/replaceImports.js"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.1.1",
"globby": "^14.0.0",
"mkdist": "^1.3.1",
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
"sass": "^1.69.5",
"unbuild": "^2.0.0",
"vite": "^5.0.2",
"vite-node": "^0.34.6",
"vue": "^3.3.7"
}
}