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" : {
2025-08-07 07:57:14 -07:00
"vscode" : "^1.100.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" ,
2024-10-26 17:44:03 -07:00
"lint" : "eslint" ,
2019-11-15 19:19:44 +01:00
"clean" : "rimraf client/out && rimraf server/out" ,
"postinstall" : "cd client && npm install && cd ../server && npm install && cd .."
} ,
"devDependencies" : {
2024-10-26 17:44:03 -07:00
"@eslint/js" : "^9.13.0" ,
"@stylistic/eslint-plugin" : "^2.9.0" ,
2025-08-06 23:43:14 -07:00
"@types/node" : "^22" ,
2024-10-26 17:44:03 -07:00
"eslint" : "^9.13.0" ,
"merge-options" : "^3.0.4" ,
"rimraf" : "^5.0.5" ,
"ts-loader" : "^9.5.1" ,
2025-08-06 23:43:14 -07:00
"typescript" : "^5.9.2" ,
"typescript-eslint" : "^8.39.0" ,
2023-12-07 11:41:55 +01:00
"webpack" : "^5.89.0" ,
2024-10-26 17:44:03 -07:00
"webpack-cli" : "^5.1.4"
2019-11-15 19:19:44 +01:00
}
2025-08-06 23:43:14 -07:00
}