mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
45 lines
981 B
JSON
45 lines
981 B
JSON
{
|
|
"name": "nodefs-provider-sample",
|
|
"displayName": "nodefs-provider-sample",
|
|
"description": "",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode-samples",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.30.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onFileSystem:datei"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"watch": "tsc -watch -p ./"
|
|
},
|
|
"dependencies": {
|
|
"mkdirp": "^0.5.1",
|
|
"rimraf": "^2.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mkdirp": "^0.5.2",
|
|
"@types/node": "^16.18.34",
|
|
"@types/promisify-node": "^0.4.0",
|
|
"@types/rimraf": "^2.0.2",
|
|
"@types/vscode": "^1.34.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
"@typescript-eslint/parser": "^6.7.0",
|
|
"eslint": "^8.26.0",
|
|
"typescript": "^5.3.2"
|
|
}
|
|
}
|