forked from superdoc-dev/superdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.18 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
44
45
46
{
"name": "harbour-enterprises",
"private": true,
"license": "AGPL-3.0",
"workspaces": [
"packages/*",
"shared/*"
],
"scripts": {
"test": "vitest --root ./packages/super-editor",
"test:e2e": "cd packages/super-editor && npx playwright install --with-deps && npm run test:e2e",
"unzip": "bash packages/super-editor/src/tests/helpers/unzip.sh",
"dev": "npm --workspace=@harbour-enterprises/superdoc run dev",
"dev:superdoc": "npm run dev --workspace=packages/superdoc",
"dev:super-editor": "npm run dev --workspace=packages/super-editor",
"watch:super-editor": "npm run build:watch --workspace=packages/super-editor",
"build:superdoc": "npm run build --workspace=packages/superdoc",
"build:super-editor": "npm run build --workspace=packages/super-editor",
"build": "npm run build:super-editor && npm run build:superdoc",
"release:superdoc": "npm run release --workspace=packages/superdoc",
"release:next": "npm run release:next --workspace=packages/superdoc",
"clean:packages": "rm -rf ./packages/*/dist",
"reset": "npm run clean:packages && rm -rf ./node_modules && rm -rf ./packages/*/node_modules && rm -rf ./package-lock.json && npm install",
"publish": "npm run build && cd packages/superdoc && npm publish --access public",
"fix:prettier": "prettier --write \"**/*.{js,css,vue}\"",
"lint:prettier": "prettier --check \"**/*.{js,css,vue}\"",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prettier": "if [ \"$(echo $npm_config_argv | grep -o '\"remain\":\\[\\]' | wc -l)\" -eq 1 ]; then echo 'Error: No arguments passed to prettier'; exit 1; fi && npx prettier --write",
"pack": "npm run build:super-editor && npm --prefix ./packages/superdoc run pack"
},
"devDependencies": {
"@vuepress/bundler-vite": "^2.0.0-rc.18",
"@vuepress/plugin-redirect": "^2.0.0-rc.60",
"@vuepress/theme-default": "^2.0.0-rc.60",
"@playwright/test": "^1.50.1",
"@types/node": "^22.13.1",
"prettier": "3.3.3",
"rollup": "^4.26.0",
"rollup-plugin-visualizer": "^5.12.0",
"vitest": "^3.0.8",
"xml-js": "^1.6.11",
"sass-embedded": "^1.80.7",
"vuepress": "^2.0.0-rc.18"
}
}