-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 953 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
{
"name": "@dkkoval/react-tf",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/dmk/react-tf.git"
},
"main": "dist/index.js",
"bin": {
"react-tf": "./dist/cli.js"
},
"type": "module",
"files": [
"dist"
],
"keywords": ["terraform", "react", "renderer", "cli"],
"author": "Dmytro Koval",
"license": "Apache-2.0",
"description": "React renderer for Terraform with CLI support",
"scripts": {
"build": "bun build ./src/index.ts ./src/cli.ts --outdir=dist --target=node",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"dependencies": {
"commander": "^13.0.0",
"glob": "^11.0.1",
"react": "^18.2.0",
"react-reconciler": "^0.29.0",
"typescript": "^5.0.0",
"bun": "1.1.45"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-reconciler": "^0.28.0",
"@types/node": "^20.0.0",
"bun-types": "latest"
}
}