-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 KB
/
package.json
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": "swiftgen",
"version": "0.1.4",
"description": "Generate typesafe Swift code using input TypeScript code.",
"main": "dist/index.js",
"bin": {
"swiftgen": "dist/index.js"
},
"scripts": {
"build": "tsc && npm run copy-config && npm run add-shebang",
"copy-config": "cpx \"src/config/config.json\" \"dist/config/\" --verbose",
"start": "node dist/index.js",
"add-shebang": "node dist/utils/addShebang.js"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"keywords": [
"swift",
"typescript",
"codegen"
],
"author": {
"name": "Justin Bush",
"email": "[email protected]",
"url": "https://github.com/buzsh"
},
"homepage": "https://typeswift.org",
"repository": {
"type": "git",
"url": "git+https://github.com/TypeSwift/SwiftGen.git"
},
"license": "MIT",
"dependencies": {
"commander": "^8.3.0",
"ts-morph": "^22.0.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/node": "^20.12.12",
"cpx": "^1.5.0"
}
}