-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "@betaflight/api",
"version": "0.4.0",
"description": "A high-level API to read data from betaflight flight controllers",
"author": "[email protected]",
"main": "./src/index.ts",
"publishConfig": {
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/cjs/index.d.ts"
},
"sideEffects": false,
"repository": "https://github.com/freshollie/fresh-configurator/tree/master/packages/api",
"readme": "https://github.com/freshollie/fresh-configurator/tree/master/packages/api#readme",
"license": "MIT",
"keywords": [
"betaflight",
"api",
"flightcontroller",
"msp",
"reader"
],
"files": [
"dist/esm",
"dist/cjs"
],
"scripts": {
"testscript": "ts-node --project tsconfig.cjs.build.json testscript.ts"
},
"dependencies": {
"@betaflight/msp": "^0.4.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^14.17.14",
"@types/semver": "^7.3.8",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}