-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
141 lines (141 loc) · 3.59 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@timo9378/flow2code",
"version": "0.6.0",
"description": "X-ray vision for your backend code — decompile TypeScript into visual flows, edit on canvas, export clean code",
"type": "module",
"sideEffects": false,
"main": "./dist/compiler.js",
"module": "./dist/compiler.js",
"types": "./dist/compiler.d.ts",
"scripts": {
"dev": "next dev --turbopack",
"dev:server": "tsx src/server/index.ts",
"build": "pnpm build:ui && pnpm build:cli",
"build:ui": "next build",
"build:cli": "tsup && cp src/server/server.d.ts dist/server.d.ts",
"start": "node dist/server.js",
"lint": "eslint .",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"precheck": "pnpm lint && pnpm test:run && pnpm build:cli",
"docs:api": "typedoc",
"compile": "node --loader ts-node/esm src/cli/index.ts compile",
"watch": "node --loader ts-node/esm src/cli/index.ts watch",
"prepublishOnly": "pnpm build",
"postinstall": "node scripts/postinstall.cjs || true"
},
"bin": {
"flow2code": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/compiler.js",
"require": "./dist/compiler.cjs",
"types": "./dist/compiler.d.ts"
},
"./compiler": {
"import": "./dist/compiler.js",
"require": "./dist/compiler.cjs",
"types": "./dist/compiler.d.ts"
},
"./server": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
}
},
"files": [
"dist",
"out",
"scripts",
"!dist/*.map",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"decompiler",
"compiler",
"ast",
"typescript",
"code-audit",
"visual-programming",
"code-generator",
"flow",
"nextjs",
"express",
"cloudflare-workers",
"ts-morph",
"devtools"
],
"author": "timo9378",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/timo9378/flow2code.git"
},
"homepage": "https://flow2code.koimsurai.com",
"engines": {
"node": ">=20.0.0"
},
"bugs": {
"url": "https://github.com/timo9378/flow2code/issues"
},
"packageManager": "pnpm@10.28.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@monaco-editor/react": "^4.7.0",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"monaco-editor": "^0.55.1",
"picocolors": "^1.1.1",
"ts-morph": "^27.0.2",
"yaml": "^2.8.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@xyflow/react": "^12.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"eslint": "^10.0.2",
"globals": "^17.3.0",
"lucide-react": "^0.575.0",
"next": "^15.5.14",
"next-devtools-mcp": "^0.3.10",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"shadcn": "^3.8.5",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18",
"zustand": "^5.0.11"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}