forked from synapticsim/mach
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 KB
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
{
"name": "@synaptic-simulations/mach",
"version": "1.0.3",
"description": "The last MSFS instrument bundler you'll ever need.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"mach": "./dist/index.js"
},
"scripts": {
"build": "tsc && copyfiles src/templates/* dist",
"watch": "nodemon --watch index.ts --watch src --ext * --exec \"yarn build || exit 1\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"msfs",
"bundler",
"esbuild"
],
"author": "Michael Romashov <mromashov@icloud.com>",
"repository": "https://github.com/Synaptic-Simulations/mach",
"license": "MIT",
"dependencies": {
"@synaptic-simulations/eslint-config": "^1.0.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"esbuild": "^0.15.13",
"filesize": "^10.0.5",
"signale": "^1.4.0",
"template-file": "^6.0.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/node": "^16.18.3",
"@types/signale": "^1.4.4",
"copyfiles": "^2.4.1",
"eslint": "^8.22.0",
"nodemon": "^2.0.20",
"typescript": "^4.8.4"
}
}