auto-path/package.json

38 lines
865 B
JSON

{
"name": "auto-path",
"displayName": "auto-path",
"description": "🔥 自动提示文件路径, 方便引入项目为的文件",
"version": "1.0.1",
"publisher": "yutent",
"author": "Yutent [@yutent]",
"icon": "logo.png",
"engines": {
"vscode": "^1.49.0"
},
"categories": ["Other"],
"activationEvents": ["*"],
"main": "out.js",
"contributes": {},
"repository": {
"type": "git",
"url": "https://github.com/yutent/auto-path.git"
},
"keywords": [
"autofile",
"autofilename",
"autopath",
"auto-file",
"auto-filename",
"auto-path",
"yutent"
],
"scripts": {
"start": "esbuild index.js --bundle --outfile=out.js --external:vscode --format=cjs --platform=node",
"vscode:prepublish": "npm start -- --minify"
},
"license": "MIT",
"devDependencies": {
"esbuild": "^0.12.14"
}
}
自动提示文件路径, 方便引入项目为的文件
JavaScript 100%