-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.25 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
43
44
{
"name": "yi4k-sdk-js",
"version": "0.7.2",
"license": "MIT",
"keywords": [
"SDK",
"Yi4k",
"Camera"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build": "yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions .ts --source-maps inline"
},
"repository": {
"type": "git",
"url": "https://github.com/bonkzero404/yi4k-sdk-js.git"
},
"author": "Janitra Panji <[email protected]>",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^7.23.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"typescript": "^4.2.3"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"axios": "^0.21.1",
"colors": "^1.4.0"
}
}