-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.7 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.7 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
43
44
45
46
47
48
49
{
"name": "openremotestart-pi",
"version": "1.0.0",
"description": "based on https://github.com/jmaxxz/OpenRemoteStart",
"main": "dist/index.js",
"type": "commonjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc src/*.ts --outDir lib",
"watch": "tsc src/*.ts --watch --outDir lib",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --presets=@babel/preset-env,@babel/preset-typescript --source-maps inline",
"build:watch": "babel src --out-dir lib --extensions \".ts,.tsx\" --presets=@babel/preset-env,@babel/preset-typescript --source-maps inline --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emu-sh/OpenRemoteStart-pi.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/emu-sh/OpenRemoteStart-pi/issues"
},
"homepage": "https://github.com/emu-sh/OpenRemoteStart-pi#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@types/express": "^4.17.7",
"@types/node": "^15.0.2",
"babel-core": "^7.0.0-bridge.0",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"@serialport/parser-byte-length": "^9.0.0",
"@types/serialport": "^8.0.1",
"express": "^4.17.1",
"meow": "^9.0.0",
"prettier": "^2.2.1",
"serialport": "^9.0.0",
"ts-node": "^8.10.2"
}
}