-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 850 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
{
"name": "flowkit",
"private": true,
"version": "0.0.1",
"description": "FlowKit monorepo root",
"repository": {
"type": "git",
"url": "https://github.com/gitaman69/flowhub.git"
},
"homepage": "https://github.com/gitaman69/flowhub#readme",
"bugs": {
"url": "https://github.com/gitaman69/flowhub/issues"
},
"type": "module",
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test && pnpm run test:integration",
"test:integration": "pnpm --filter @flowhub/tests run test",
"typecheck": "pnpm -r run typecheck",
"report:downloads": "node scripts/npm-downloads-report.mjs"
},
"devDependencies": {
"@types/node": "^20.14.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}