-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
{
"$schema": "https://json.schemastore.org/package",
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"dbml-playground"
],
"scripts": {
"test": "npx lerna run test",
"build": "yarn clean-build && npx lerna run build",
"clean-build": "rm -rf ./packages/dbml-cli/lib ./packages/dbml-core/lib ./packages/dbml-parse/dist ./packages/dbml-connector/dist",
"lint": "npx lerna run lint",
"lint:fix": "npx lerna run lint:fix",
"coverage": "npx lerna run coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "4.0.18",
"fast-check": "^4.3.0",
"lerna": "^7.1.4",
"lerna-changelog": "^2.2.0",
"vite": "npm:rolldown-vite@7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "4.0.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"@stylistic/eslint-plugin": "^5.5.0",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.8.8"
},
"resolutions": {
"**/tmp": "0.2.5"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/holistics/dbml"
},
"changelog": {
"labels": {
"PR: Performance :running_woman:": ":running_woman: Performance",
"PR: Docs :memo:": ":memo: Documentation",
"PR: Bug Fix :bug:": ":bug: Bug Fix",
"PR: New Feature :rocket:": ":rocket: New Feature",
"PR: Breaking Change :boom:": ":boom: Breaking Change",
"PR: Internal :house_with_garden:": ":house_with_garden: Internal",
"PR: Dependencies Update :robot:": ":robot: Dependencies Update"
}
},
"engines": {
"node": ">=18"
}
}