-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.67 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
{
"name": "plugin-kit-workspace",
"private": true,
"workspaces": [
"plugin-kit-core",
"plugin-kit-icons",
"plugin-kit-codemirror-core",
"plugin-kit-tiptap-core",
"plugin-kit-forms",
"plugin-kit-web",
"plugin-kit-react",
"plugin-kit-vue",
"plugin-kit-playground",
"docs"
],
"scripts": {
"build": "npm run build:libs && npm run build -w @verbb/plugin-kit-playground --if-present && npm run docs:build --if-present",
"build:libs": "npm run build -w @verbb/plugin-kit-core && npm run build -w @verbb/plugin-kit-icons && npm run build -w @verbb/plugin-kit-codemirror-core && npm run build -w @verbb/plugin-kit-tiptap-core && npm run build -w @verbb/plugin-kit-forms && npm run build:web && npm run build -w @verbb/plugin-kit-react && npm run build -w @verbb/plugin-kit-vue",
"build:web": "rm -rf plugin-kit-web/dist plugin-kit-web/dist-loader && npm run build -w @verbb/plugin-kit-web",
"dev": "npm run dev --workspace @verbb/plugin-kit-playground",
"dev:web": "npm run dev",
"dev:web-playground": "npm run dev",
"dev:ui": "npm run dev",
"docs:dev": "npm run docs:dev -w @verbb/plugin-kit-docs",
"docs:build": "npm run docs:build -w @verbb/plugin-kit-docs",
"release": "node ./scripts/release.mjs",
"release:patch": "node ./scripts/release.mjs patch",
"release:minor": "node ./scripts/release.mjs minor",
"release:major": "node ./scripts/release.mjs major",
"release:publish-current": "node ./scripts/release.mjs --publish-current"
},
"devDependencies": {
"concurrently": "^9.2.4"
}
}