-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.47 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.47 KB
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
{
"type": "module",
"private": true,
"packageManager": "pnpm@9.12.2",
"license": "GPL-3.0",
"scripts": {
"build": "NODE_ENV=production pnpm run build:packages",
"build:check": "pnpm run security:check",
"build:packages": "pnpm run build:lens & pnpm run lint --fix",
"build:lens": "pnpm --filter theme-lens build",
"build:demo": "npm -C demo run build",
"ci:publish": "pnpm -r publish --access public --no-git-checks",
"dev": "npm run demo",
"hot:dev": "DEV_ENV=hot pnpm --filter showcase dev",
"security:check": "pnpm audit --prod --audit-level high",
"demo": "npm -C demo run dev",
"preview": "cd demo && vite preview --host",
"lint": "eslint .",
"release": "cd theme && git add -A && bumpp",
"typecheck": "vue-tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.25.9",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@unocss/eslint-plugin": "^0.63.6",
"bumpp": "^9.7.1",
"eslint": "^9.13.0",
"eslint-plugin-format": "^0.1.2",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-vue": "^6.0.0-beta.9",
"taze": "catalog:",
"typescript": "^5.6.3",
"valaxy-theme-lens": "workspace:*",
"vitest": "^2.1.3",
"vue-tsc": "^2.1.6"
}
}