-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 853 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
{
"name": "@diffx/debug-ref",
"version": "0.0.6",
"description": "Debug the value of vuejs refs in the dev tools",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"keywords": [
"vue",
"debug",
"ref"
],
"repository": {
"url": "https://github.com/jbjorge/debug-ref/",
"type": "git"
},
"homepage": "https://github.com/jbjorge/debug-ref/",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"deploy": "npm publish --access public",
"prepublishOnly": "npm run build"
},
"files": [
"lib/"
],
"author": "Joachim Bjørge <[email protected]> (http://ground.no/)",
"license": "MIT",
"dependencies": {
"@vue/devtools-api": "^6.4.5"
},
"peerDependencies": {
"vue": "^3.2"
},
"devDependencies": {
"typescript": "^4.8.4",
"vue": "^3.2.41"
}
}