-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.73 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.73 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
{
"private": true,
"type": "module",
"license": "(MIT OR Apache-2.0)",
"repository": {
"url": "https://github.com/d-zero-dev/BurgerEditor.git"
},
"scripts": {
"start": "node ./packages/@burger-editor/local/server/index.js",
"build": "lerna run build",
"clean": "lerna run clean",
"dev": "lerna run dev --parallel",
"test": "run-p test:unit",
"test:unit": "vitest run",
"test:vr": "vitest run --project vr",
"test:vr:update": "vitest run --project vr --update",
"lint": "run-s lint:eslint lint:stylelint lint:markuplint lint:prettier lint:textlint:fix lint:textlint:check lint:cspell",
"lint:cspell": "npx cspell --no-progress --show-suggestions \"{*,**/*}/\"",
"lint:eslint": "npx eslint --fix \"{*,**/*}.{js,cjs,mjs,jsx,ts,cts,mts,tsx,svelte}\"",
"lint:stylelint": "npx stylelint \"./packages/@burger-editor/*/{src,style}/**/*.{css,scss,sass,svelte}\" --fix",
"lint:prettier": "npx prettier --write \"{*,**/*}.{md,json,js,cjs,mjs,jsx,ts,cts,mts,tsx,svelte}\"",
"lint:markuplint": "npx markuplint \"./packages/@burger-editor/**/*.{html,svelte}\"",
"lint:textlint:fix": "npx textlint --fix \"{*,**/*}.md\"",
"lint:textlint:check": "npx textlint \"{*,**/*}.md\"",
"release": "lerna publish --exact --conventional-commits --conventional-graduate",
"release:next": "lerna publish --dist-tag next --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"prerelease": "yarn build; yarn test",
"prepare": "husky",
"commit": "npx cz",
"co": "npx cz",
"update": "yarn upgrade-interactive"
},
"workspaces": [
"packages/@burger-editor/*"
],
"resolutions": {
"@burger-editor/mcp-server/zod": "4.3.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@d-zero/cz-config"
}
},
"devDependencies": {
"@d-zero/commitlint-config": "5.0.0",
"@d-zero/cspell-config": "5.0.0",
"@d-zero/eslint-config": "5.0.0",
"@d-zero/lint-staged-config": "5.0.0",
"@d-zero/markuplint-config": "5.0.0",
"@d-zero/prettier-config": "5.0.0",
"@d-zero/stylelint-config": "5.0.0",
"@d-zero/textlint-config": "5.0.0",
"@d-zero/tsconfig": "1.0.0",
"@markuplint/svelte-parser": "4.7.13",
"@markuplint/svelte-spec": "4.5.23",
"@vitest/browser": "4.0.18",
"@vitest/browser-playwright": "4.0.18",
"eslint-plugin-svelte": "3.15.0",
"husky": "9.1.7",
"jsdom": "28.1.0",
"lerna": "9.0.4",
"npm-run-all2": "8.0.4",
"pixelmatch": "^7.1.0",
"playwright": "1.58.2",
"pngjs": "^7.0.0",
"postcss-html": "1.8.1",
"prettier-plugin-svelte": "3.5.0",
"stylelint-config-html": "1.1.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"packageManager": "yarn@4.12.0",
"volta": {
"node": "24.14.0",
"yarn": "4.12.0"
}
}