-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
45
46
47
48
49
{
"name": "vue-ipc-decorator",
"description": "method decorators of Ipc for Vue + Electron",
"version": "0.1.4",
"main": "lib/index.umd.js",
"module": "lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"vue",
"typescript",
"decorator"
],
"license": "MIT",
"author": {
"name": "angeart",
"url": "https://github.com/angeart"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Angeart/vue-ipc-decorator"
},
"bugs": {
"url": "https://github.com/Angeart/vue-ipc-decorator/issues"
},
"homepage": "https://github.com/Angeart/vue-ipc-decorator#readme",
"files": [
"lib"
],
"scripts": {
"build": "tsc -p ./src/tsconfig.json && rollup -c",
"test": "jest",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"electron": "^6.0.0",
"electron-better-ipc": "^0.6.0",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0"
},
"devDependencies": {
"@jest-runner/electron": "^2.0.2",
"@types/jest": "^24.0.19",
"jest": "^24.9.0",
"rollup": "^1.25.1",
"rollup-plugin-strip": "^1.2.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
}
}