-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 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
{
"name": "quantits",
"version": "0.0.1",
"private": true,
"description": "Type-safe quantities and unit conversions for TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/quantits/quantits.git"
},
"homepage": "https://github.com/quantits/quantits#readme",
"bugs": {
"url": "https://github.com/quantits/quantits/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces --if-present",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "npm run typecheck --workspaces --if-present",
"docs": "typedoc",
"publish:all": "npm run build && npm publish --workspace=@quantits/core && npm publish --workspace=@quantits/physics && npm publish --workspace=@quantits/digital && npm publish --workspace=@quantits/time"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"tsup": "^8.3.5",
"typedoc": "^0.28.15",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}