-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.31 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.31 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
{
"name": "@node-zugferd/root",
"private": true,
"version": "0.0.1",
"packageManager": "pnpm@9.15.0",
"repository": {
"type": "git",
"url": "https://github.com/jslno/node-zugferd.git"
},
"scripts": {
"build": "turbo --filter \"./packages/*\" build",
"dev": "turbo --filter \"./packages/*\" dev",
"dev:dts": "turbo --filter \"./packages/*\" dev:dts",
"clean": "turbo --filter \"./packages/*\" clean && rm -rf node_modules",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"release": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --no-git-checks",
"release:no-build": "bumpp && pnpm -r publish --access public --no-git-checks --tag next",
"release:canary": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag canary --no-git-checks",
"bump": "bumpp",
"test": "turbo --filter \"./packages/*\" test",
"typecheck": "turbo --filter \"./packages/*\" typecheck"
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"@biomejs/js-api": "^2.0.3",
"@biomejs/wasm-nodejs": "^2.1.2",
"@types/node": "^22.10.7",
"bumpp": "^10.0.3",
"cross-env": "^7.0.3",
"tinyglobby": "^0.2.11",
"turbo": "^2.4.2",
"typescript": "^5.7.3"
}
}