-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 966 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 966 Bytes
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
{
"name": "codeexpander-dev-tools",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "pnpm --filter @codeexpander/plugin-text run dev",
"create": "node dev-tools/cli/dist/index.cjs",
"build": "pnpm run build:plugins",
"build:plugins": "pnpm --filter './plugins/*' --filter './examples/*' --filter './third-party/*' run build",
"publish:plugins": "pnpm run build:plugins && pnpm --filter './plugins/*' --filter './examples/*' --filter './third-party/*' publish -r --no-git-checks",
"build:third-party": "node scripts/build-third-party-plugins.mjs",
"publish:plugin": "node scripts/publish-plugins.mjs",
"lint": "pnpm -r run lint 2>/dev/null || true"
},
"engines": {
"packageManager": "pnpm>=9.0.0"
},
"devDependencies": {
"clean-css": "^5.3.3",
"fs-extra": "^11.3.3",
"glob": "^13.0.0",
"html-minifier-terser": "^7.2.0",
"terser": "^5.36.0",
"zx": "^8.8.5"
}
}