-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.56 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@sylphx/flow-monorepo",
"version": "1.0.0",
"private": true,
"description": "Sylphx Flow - Development guidelines and MCP server",
"type": "module",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/sylphxltd/flow.git"
},
"keywords": [
"development",
"flow",
"guidelines",
"typescript",
"nextjs",
"sveltekit",
"react",
"flutter",
"type-safe",
"mcp",
"ai-agents",
"github-installation"
],
"author": "sylphxltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/sylphxltd/flow/issues"
},
"homepage": "https://github.com/sylphxltd/flow#readme",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo test",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"format": "biome format --write .",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules/.cache",
"clean:all": "rm -rf packages/*/dist packages/*/node_modules node_modules .turbo",
"dev:flow": "bun --cwd packages/flow dev",
"build:flow": "bun --cwd packages/flow build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"typecheck": "turbo typecheck",
"prepublishOnly": "bunx @sylphx/doctor prepublish"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "bun@1.3.1",
"dependencies": {
"@clack/prompts": "^0.9.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"debug": "^4.4.3",
"gray-matter": "^4.0.3",
"pino": "^9.14.0",
"pino-pretty": "^11.3.0",
"yaml": "^2.8.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@sylphx/biome-config": "^0.4.1",
"@sylphx/bump": "^1.6.1",
"@sylphx/doctor": "^1.34.0",
"@types/bun": "^1.3.13",
"@types/debug": "^4.1.13",
"@types/node": "^24.12.3",
"bunup": "^0.16.31",
"lefthook": "^2.1.6",
"turbo": "^2.9.10",
"typescript": "^5.9.3",
"vitepress": "^1.6.4"
},
"overrides": {
"body-parser": "^2.2.1",
"defu": "^6.1.7",
"esbuild": "^0.25.0",
"js-yaml": "^4.1.0",
"mdast-util-to-hast": ">=13.2.1",
"postcss": "^8.5.14",
"preact": ">=10.27.3",
"rollup": "^4.60.3",
"tar": "^7.5.2",
"vite": "^6.4.2"
}
}