2019-11-15 19:19:44 +01:00
{
"name" : "vscode-codeaction-ui-sample" ,
"displayName" : "Code Action UI Sample" ,
"description" : "Sample to demonstrate code actions with UI" ,
"version" : "1.0.0" ,
"author" : "Microsoft Corporation" ,
"license" : "MIT" ,
"keywords" : [
"multi-root ready"
] ,
"engines" : {
2021-01-15 09:19:00 +01:00
"vscode" : "^1.52.0"
2019-11-15 19:19:44 +01:00
} ,
"activationEvents" : [
"onLanguage:plaintext"
] ,
"main" : "./client/out/extension" ,
"scripts" : {
"vscode:prepublish" : "npm run webpack" ,
"webpack" : "npm run clean && webpack --mode production --config ./client/webpack.config.js && webpack --mode production --config ./server/webpack.config.js" ,
"webpack:dev" : "npm run clean && webpack --mode none --config ./client/webpack.config.js && webpack --mode none --config ./server/webpack.config.js" ,
"compile" : "tsc -b" ,
"compile:client" : "tsc -b ./client/tsconfig.json" ,
"compile:server" : "tsc -b ./server/tsconfig.json" ,
"watch" : "tsc -b -w" ,
"lint" : "npm run lint:client && npm run lint:server" ,
"lint:client" : "eslint --config ./client/.eslintrc.json ./client/src/*.ts" ,
"lint:server" : "eslint --config ./server/.eslintrc.json ./server/src/*.ts" ,
"clean" : "rimraf client/out && rimraf server/out" ,
"postinstall" : "cd client && npm install && cd ../server && npm install && cd .."
} ,
"devDependencies" : {
2022-05-24 15:12:22 -07:00
"@types/node" : "^16.11.7" ,
2023-01-30 10:35:24 -08:00
"typescript" : "^4.9.4" ,
2021-08-04 16:49:22 +02:00
"eslint" : "^7.32.0" ,
"@typescript-eslint/parser" : "^4.29.0" ,
"webpack" : "^5.48.0" ,
"webpack-cli" : "^4.7.2" ,
"ts-loader" : "^9.2.5" ,
"merge-options" : "^3.0.4" ,
2020-05-07 12:17:51 +02:00
"rimraf" : "^3.0.2"
2019-11-15 19:19:44 +01:00
}
2021-03-02 15:48:43 -08:00
}