-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 823 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 823 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
34
35
36
37
38
39
40
41
42
{
"name": "@cas8398/bridge-cli",
"version": "1.0.1",
"description": "Write logic once in .bridge and compile to PHP, TypeScript, and Node.js.",
"type": "module",
"bin": {
"bridge": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"bridge-wrapper.js",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts"
},
"keywords": [
"bridge",
"cli",
"compiler",
"php",
"typescript",
"codegen",
"cross-platform"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cas8398/bridge-cli.git"
},
"homepage": "https://github.com/cas8398/bridge-cli#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.19.0",
"typescript": "^5.0.0"
}
}