forked from birkir/ovms-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 928 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
38
39
40
41
42
43
44
45
46
47
{
"name": "ovms-client",
"version": "0.2.0",
"license": "MIT",
"author": "Birkir Gudjonsson <[email protected]>",
"main": "dist/index.js",
"module": "dist/ovms-client.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^16.0.0"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"lint": "dts lint"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/node": "^16.0.0",
"dts-cli": "^2.0.3",
"husky": "^8.0.0",
"tslib": "^2.6.0",
"typed-emitter": "^2.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"debug": "^4.3.4"
},
"peerDependencies": {
"typed-emitter": "^2.1.0"
}
}