-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "@synaptic-simulations/mach",
"version": "1.1.0-rc4",
"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\"",
"lint": "biome check",
"lint:fix": "biome check --fix --unsafe"
},
"keywords": ["msfs", "bundler", "esbuild"],
"author": "Michael Romashov <[email protected]>",
"repository": "https://github.com/Synaptic-Simulations/mach",
"license": "MIT",
"dependencies": {
"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": {
"@biomejs/biome": "1.8.0",
"@types/node": "^16.18.3",
"@types/signale": "^1.4.4",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.20",
"typescript": "^4.8.4"
}
}