34 lines
753 B
JSON
34 lines
753 B
JSON
{
|
|
"name": "@proj-airi/airi-plugin-vscode",
|
|
"type": "module",
|
|
"version": "0.9.0-alpha.6",
|
|
"private": true,
|
|
"description": "AIRI host plugin that bridges VS Code context and UI",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/moeru-ai/airi.git",
|
|
"directory": "integrations/vscode/airi-plugin-vscode"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"files": [
|
|
"README.md",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"dev": "pnpm run build",
|
|
"build": "tsdown",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@proj-airi/plugin-sdk": "workspace:*"
|
|
}
|
|
}
|