67 lines
1.6 KiB
JSON
Raw Permalink Normal View History

{
"name": "code-inspector-plugin",
"version": "0.20.15",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./types/index.d.ts",
"repository": "git@github.com:zh-lx/code-inspector.git",
"author": "zh-lx <18366276315@163.com>",
"license": "MIT",
"files": [
"dist",
"types"
],
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
}
},
"./dist/*": {
"import": {
"default": "./dist/*"
},
"require": {
"default": "./dist/*"
}
}
},
"homepage": "https://inspector.fe-dev.cn/en",
"description": "Click the dom on the page, it will open your IDE and position the cursor to the source code location of the dom.",
"keywords": [
"webpack",
"vite",
"plugin",
"vue",
"vscode",
"inspector",
"inspect"
],
"bugs": {
"url": "https://github.com/zh-lx/code-inspector/issues"
},
"dependencies": {
"chalk": "4.1.1",
"dotenv": "^16.3.1",
"code-inspector-core": "0.20.15",
"vite-code-inspector-plugin": "0.20.15",
"webpack-code-inspector-plugin": "0.20.15",
"esbuild-code-inspector-plugin": "0.20.15"
},
"devDependencies": {
"@types/node": "^16.0.1",
"typescript": "^4.9.3",
"vite": "^4.1.0"
},
"scripts": {
"clear": "rimraf ./dist && rimraf ./types",
"build": "pnpm clear && tsc && vite build",
"pub": "pnpm publish",
"pub:beta": "pnpm publish --tag beta"
}
}