-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
40
41
42
43
44
45
46
{
"name": "sflo",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.15.0",
"workspaces": [
"cli",
"sflo-host",
"plugins/*",
"shared/*"
],
"scripts": {
"dev": "nodemon",
"dev:debug": "nodemon",
"dev:watch": "tsc -b -w --preserveWatchOutput",
"dev:tsx": "pnpm --filter @semantic-flow/host dev",
"dev:tsx:debug": "pnpm --filter @semantic-flow/host dev:debug",
"build": "pnpm -r build",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts --quiet"
},
"dependencies": {
"@dendronhq/dendron-cli": "^0.122.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.17.0",
"nodemon": "^3.1.10",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}