-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 947 Bytes
/
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
{
"name": "@mantou/gem-port",
"version": "1.2.0",
"description": "Export React component",
"keywords": [
"gem",
"react",
"generator"
],
"bin": {
"gem-port": "bin/index.js"
},
"files": [
"/bin/"
],
"scripts": {
"build": "esbuild ./src/index.ts --outdir=./bin --bundle --platform=node --external:typescript --external:ts-morph",
"start": "pnpm build --watch",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"commander": "^7.2.0",
"gem-analyzer": "^2.2.0",
"ts-morph": "^13.0.0",
"typescript": "^5.6.2"
},
"devDependencies": {
"@gemjs/config": "^2.1.0"
},
"author": "mantou132",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mantou132/gem.git",
"directory": "packages/gem-port"
},
"bugs": {
"url": "https://github.com/mantou132/gem/issues"
},
"homepage": "https://github.com/mantou132/gem#readme"
}