-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 KB
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
64
65
66
67
68
69
70
71
{
"name": "@whimsey/devtool",
"version": "0.1.0-3",
"description": "Whimsey Studios Devtool.",
"private": false,
"license": "MIT",
"author": "Whimsey Digital <devtool@whimseydigital.com> (https://www.whimseydigital.com)",
"homepage": "https://www.whimseystudios.com",
"main": "./devtool.js",
"types": "./devtool.d.ts",
"typings": "./devtool.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"lint": "eslint --ext .ts,.js -f ./node_modules/eslint-friendly-formatter src",
"lint:fix": "eslint --ext .ts,.js -f ./node_modules/eslint-friendly-formatter --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whimseystudios/Devtool.git"
},
"bugs": {
"url": "https://github.com/whimseystudios/Devtool/issues"
},
"keywords": [
"whimsey",
"studios",
"devtool",
"vue",
"plugin",
"electron"
],
"files": [
"define.d.ts",
"define.js",
"define.js.map",
"devtool.d.ts",
"devtool.js",
"devtool.js.map",
"msgdef.d.ts",
"msgdef.js",
"msgdef.js.map",
"pluginx.d.ts",
"pluginx.js",
"pluginx.js.map",
"changes.txt",
"license.txt",
"readme.md"
],
"engines": {
"node": ">=10.16.0 <=16.x.x",
"npm": ">=6.0.0"
},
"dependencies": {
},
"devDependencies": {
"@types/node": "^16.10.1",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"typescript": "^4.4.3"
}
}