-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "@harlem/plugin-devtools",
"amdName": "harlemDevtools",
"version": "3.1.8",
"license": "MIT",
"author": "Andrew Courtice <[email protected]>",
"description": "The official Vue devtools plugin for Harlem",
"homepage": "https://harlemjs.com",
"main": "index.js",
"module": "dist/index.bundler.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"sideEffects": false,
"files": [
"dist",
"index.js"
],
"exports": {
".": {
"import": "./dist/index.bundler.mjs",
"require": "./index.js",
"types": "./dist/index.d.ts"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"keywords": [
"vue",
"state",
"harlem",
"plugin",
"devtools"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewcourtice/harlem.git",
"directory": "plugins/devtools"
},
"bugs": {
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"build": "node ./build.mjs",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"@harlem/core": "^3.0.0"
},
"dependencies": {
"@harlem/utilities": "^3.1.8",
"@vue/devtools-api": "^6.5.0"
},
"devDependencies": {
"@harlem/core": "^3.1.8"
}
}