-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
{
"name": "vue-click-to-component",
"version": "0.3.7",
"description": "Option+Click(Alt+Click) Vue components in your browser to instantly open the source in VS Code.",
"keywords": [
"vscode",
"devtools",
"vue",
"webpack",
"vue-cli",
"vite"
],
"homepage": "https://github.com/zjffun/vue-click-to-component#readme",
"bugs": {
"url": "https://github.com/zjffun/vue-click-to-component/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zjffun/vue-click-to-component.git"
},
"license": "MIT",
"author": "Jufeng Zhang <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"loader.js",
"vite-plugin.js",
"vue-cli-plugin.js",
"client.js",
"client.d.ts",
"client-force-enable.js",
"client-force-enable.d.ts",
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && tsc && node ./tools/client-force-enable.mjs",
"eslint-fix": "eslint --fix .",
"prepublishOnly": "yarn build",
"prettier-fix": "prettier --write .",
"registry-fix": "replace-lockfile-registry --registry https://registry.npmjs.org/",
"sort-package-json": "sort-package-json"
},
"dependencies": {
"html-tags": "^3.3.1",
"parse5": "^7.1.2"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"replace-lockfile-registry": "^0.0.1",
"rimraf": "^5.0.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}