-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
63 lines (63 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@nodegui/vue-nodegui",
"version": "0.0.5",
"description": "library to render native desktop applications using vue js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext ts .",
"build": "tsc",
"dev": "npm run build && webpack -p && qode --inspect ./demo-dist/main.js",
"docs": "npx run-func ./scripts/docs.js cleanApiDocs && typedoc && node ./scripts/docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodegui/vue-nodegui.git"
},
"keywords": [
"vue",
"nodegui",
"desktop",
"applications"
],
"author": "Shubham Zanwar <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nodegui/vue-nodegui/issues"
},
"homepage": "https://github.com/nodegui/vue-nodegui#readme",
"dependencies": {
"@nodegui/nodegui": "^0.25.0",
"@vue/compiler-core": "^3.0.1",
"@vue/runtime-core": "^3.0.1",
"phin": "^3.5.0"
},
"devDependencies": {
"@types/node": "^13.13.17",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vue/compiler-sfc": "^3.0.1",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.21.2",
"file-loader": "^5.0.2",
"husky": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-loader": "^0.6.0",
"ts-transformer-imports": "^0.4.3",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.4.2",
"typescript": "^3.9.7",
"url-loader": "^3.0.0",
"vue-loader": "16.0.0-beta.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}