forked from tus/tus-node-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 719 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 719 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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"test"
],
"scripts": {
"build": "tsc --build",
"lint": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format --error-on-warnings .",
"pretest": "tsc --build",
"test": "npm test -w ./packages",
"version": "changeset version && npm install",
"release": "gh workflow run release",
"release:local": "npm run build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.29.2",
"typescript": "^5.8.2"
}
}