-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 751 Bytes
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
{
"name": "dql",
"private": true,
"packageManager": "pnpm@9.15.0",
"repository": {
"type": "git",
"url": "https://github.com/duckcode-ai/dql.git"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"clean": "turbo run clean",
"release:dry-run": "pnpm build && pnpm test && node ./scripts/release-packages.mjs --dry-run",
"release:publish": "node ./scripts/release-packages.mjs --publish",
"release:extension": "pnpm --filter dql-language-support package"
},
"dependencies": {
"@duckcodeailabs/dql-cli": "workspace:*"
},
"devDependencies": {
"@types/node": "^22.0.0",
"prettier": "^3.4.0",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}