-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 927 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 927 Bytes
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
{
"name": "msfs-navigation-data-interface",
"workspaces": [
"src/*",
"example/*"
],
"scripts": {
"lint": "bun run --filter \"*\" lint",
"typecheck": "bun run --filter \"*\" typecheck",
"build:wasm": "bun ./scripts/cargo-msfs.ts",
"build:gauge": "bun --cwd=\"./example/gauge\" run build",
"copy:wasm": "bun run ./scripts/copy-wasm-module.ts",
"build:example": "bun run build:wasm && bun run build:gauge && bun run copy:wasm",
"package": "cd dist/wasm/2020 && bestzip ../../wasm.zip msfs_navigation_data_interface.wasm"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/bun": "latest",
"bestzip": "^2.2.1",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript-eslint": "^8.29.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}