-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1016 Bytes
/
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
{
"name": "electronics-workbench-decoder",
"version": "0.0.0",
"description": "Scripts to decode compressed EWB files",
"author": "Cameron Tacklind <cameron@tacklind.com>",
"license": "ISC",
"main": "decode",
"scripts": {
"start": "ts-node src/main.ts",
"dev": "ts-node-dev --rs --respawn src/main.ts --"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"command-line-args": "^5.1.1",
"implode-decoder": "^1.0.1",
"node": "^16.3.0",
"stream-buffers": "^3.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/node": "^15.12.4",
"@types/stream-buffers": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.4"
}
}