-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
47
48
{
"name": "@synaptic-simulations/mach",
"version": "1.3.0-rc2",
"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 <mromashov@icloud.com>",
"repository": "https://github.com/Synaptic-Simulations/mach",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"esbuild": "^0.25.0",
"filesize": "^10.1.6",
"import-single-ts": "^1.2.0",
"signale": "^1.4.0",
"template-file": "^6.0.1",
"zod": "^3.24.1",
"zod-validation-error": "3.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.8",
"@types/signale": "^1.4.7",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.9",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22.0.0"
}
}