forked from expressive-code/expressive-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.39 KB
/
package.json
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
{
"name": "root",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "pnpm -r --stream build",
"lint": "eslint . && markdownlint **/*.md --ignore **/node_modules/**/*.md",
"coverage": "pnpm -r --no-bail --stream coverage",
"test": "pnpm -r --no-bail test-short",
"validate": "pnpm i && pnpm build && pnpm test && pnpm lint",
"bump": "changeset version && pnpm i",
"release": "pnpm validate && pnpm bump && changeset publish",
"ci-version": "changeset version && pnpm install --no-frozen-lockfile",
"ci-publish": "pnpm build && pnpm test && pnpm lint && changeset publish"
},
"workspaces": [
"packages/@expressive-code/*",
"packages/*",
"internal/*"
],
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitest/coverage-c8": "^0.29.8",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-redundant-undefined": "^0.4.0",
"happy-dom": "^8.9.0",
"markdownlint-cli": "^0.33.0",
"prettier": "^2.8.7",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"engines": {
"node": "^14.15.0 || >=16.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]"
}