-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 985 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 985 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
28
29
30
31
32
33
34
{
"bugs": {
"url": "https://github.com/mindrones/datakit/issues"
},
"description": "A collection of utilities for data transformation and visualisation",
"devDependencies": {
"@datakit/eslint": "workspace:",
"@eslint/compat": "catalog:",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"homepage": "https://github.com/mindrones/datakit",
"license": "MIT",
"name": "datakit-monorepo",
"packageManager": "pnpm@10.30.3",
"private": true,
"scripts": {
"coverage": "vitest run --coverage",
"lint": "eslint",
"publish": "pnpm publish -r",
"publishDry": "pnpm publish -r --dry-run",
"release": "pnpm --filter @datakit/scripts run release",
"release:dry": "pnpm --filter @datakit/scripts run release:dry",
"test": "vitest",
"typecheck": "tsc -b packages/*/tsconfig.json",
"typecheck:watch": "tsc -b packages/*/tsconfig.json --watch"
},
"type": "module",
"workspaces": [
"packages/*"
]
}