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
83 lines (83 loc) · 3.55 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.55 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "harbour-enterprises",
"private": true,
"license": "AGPL-3.0",
"workspaces": [
"packages/*",
"shared/*"
],
"scripts": {
"test": "vitest run",
"test:debug": "npm run test:debug --workspace=packages/super-editor",
"test:all": "vitest run",
"test:editor": "vitest run --root ./packages/super-editor",
"test:superdoc": "vitest run --root ./packages/superdoc",
"test:cov": "node scripts/test-cov.mjs",
"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",
"format": "prettier --write \"**/*.{js,jsx,vue,css,scss,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,vue,css,scss,json,md}\"",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:jsdoc": "eslint packages/super-editor/src/extensions/field-annotation/field-annotation.js --config eslint.config.docs.mjs",
"lint:jsdoc:fix": "eslint packages/super-editor/src/extensions/field-annotation/field-annotation.js --config eslint.config.docs.mjs --fix",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"pack": "npm run build:super-editor && npm --prefix ./packages/superdoc run pack",
"prepare": "husky",
"lint:staged": "lint-staged",
"watch": "npm run watch:es --workspace=packages/superdoc",
"check:all": "npm run format && npm run lint:fix && npm --workspace=packages/super-editor run types:build && npm run test",
"local:publish": "npm version prerelease --preid=local --workspace=@harbour-enterprises/superdoc && npm publish --workspace=@harbour-enterprises/superdoc --registry http://localhost:4873"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,json,md}": [
"prettier --write"
],
"*.vue": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.31.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.13.1",
"@vitest/coverage-v8": "^3.2.4",
"@vuepress/bundler-vite": "^2.0.0-rc.18",
"@vuepress/plugin-redirect": "^2.0.0-rc.60",
"@vuepress/theme-default": "^2.0.0-rc.60",
"eslint": "^9.34.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^54.1.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^16.1.4",
"prettier": "3.3.3",
"rollup": "^4.46.2",
"rollup-plugin-visualizer": "^5.12.0",
"sass-embedded": "^1.80.7",
"semantic-release": "^24.2.7",
"verdaccio": "^6.1.6",
"vitest": "^3.0.8",
"vuepress": "^2.0.0-rc.18",
"xml-js": "^1.6.11"
}
}