forked from flybywiresim/react-msfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 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
{
"name": "react-msfs",
"version": "0.2.0",
"description": "React utilities and hooks for Microsoft Flight Simulator UIs and displays",
"author": "FlyByWire Simulations, Synaptic Simulations",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/flybywiresim/react-msfs.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup -c rollup.config.js"
},
"devDependencies": {
"@flybywiresim/eslint-config": "^0.1.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.3",
"@types/geodesy": "^2.2.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"rollup": "^2.54.0",
"typescript": "^4.3.0"
},
"peerDependencies": {
"react": "^17.x",
"react-dom": "^17.x"
},
"dependencies": {
"geodesy": "^2.2.1"
}
}