-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 906 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
{
"name": "cloudbase-adapter-electron",
"version": "1.0.7",
"description": "tencent cloudbase adapter for electron",
"type": "module",
"typings": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.js"
},
"author": "faxinwang <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"cloudbase",
"adapter",
"electron",
"tcb"
],
"scripts": {
"build:esm": "tsc -p tsconfig.esm.json",
"build": "webpack && yarn build:esm"
},
"dependencies": {
"@cloudbase/adapter-interface": "^0.4.1",
"@cloudbase/types": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@types/node": "^14.6.4",
"babel-loader": "^8.1.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}