-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 810 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 810 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
{
"name": "n8n-transpiler",
"version": "0.1.0",
"license": "Apache-2.0",
"author": "Stackbilt LLC",
"repository": {
"type": "git",
"url": "https://github.com/Stackbilt-dev/n8n-transpiler.git"
},
"bugs": {
"url": "https://github.com/Stackbilt-dev/n8n-transpiler/issues"
},
"homepage": "https://github.com/Stackbilt-dev/n8n-transpiler#readme",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"acorn": "^8.11.3",
"astring": "^1.8.6",
"hono": "^4.10.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251014.0",
"typescript": "^5.3.3",
"vitest": "^3.0.0",
"wrangler": "^4.0.0"
}
}