forked from likec4/likec4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.78 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@likec4/workspaces",
"version": "0.54.0",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"docs",
"packages/*",
"examples/*"
],
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"scripts": {
"prepare": "husky install",
"build": "turbo run build --filter='./packages/*'",
"ci:build": "turbo run build --filter='./packages/*' --log-prefix=none --log-order=grouped",
"typecheck": "turbo run typecheck",
"release": "shipjs prepare",
"clean": "turbo run clean && rimraf -v -g '**/*.tsbuildinfo' '**/.turbo' 'node_modules/.cache/turbo'",
"clean:after:publish": "rimraf -v -g '**/package*.tgz'",
"git:pre-commit": "lint-staged",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "node integration/like4-cli-tests/run-suit.mjs",
"lint": "",
"vitest:ui": "vitest --ui",
"vs:tasks:build": "turbo run typecheck --log-prefix=none --log-order=grouped --filter='!docs-website'"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@vitest/ui": "^1.2.2",
"dprint": "^0.45.0",
"execa": "^8.0.1",
"global": "^4.4.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"rimraf": "^5.0.5",
"shipjs": "^0.26.3",
"tsx": "^4.7.1",
"turbo": "^1.12.3",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
},
"volta": {
"node": "20.11.0"
},
"resolutions": {
"vscode-jsonrpc": "8.2.0",
"vscode-languageclient": "9.0.1",
"vscode-languageserver": "9.0.1",
"vscode-languageserver-protocol": "3.17.5",
"vscode-uri": "3.0.8",
"chevrotain-allstar": "0.3.1"
},
"lint-staged": {
"**/*.{ts,tsx,mjs,js,jsx}": [
"dprint fmt"
],
"**/*.{md,mdx,yml,json}": [
"dprint fmt"
]
}
}