Initial commit: IdeaSDK TypeScript plugin SDK

This commit is contained in:
Git Agent
2026-08-02 16:24:59 +02:00
commit c322055edb
19 changed files with 2039 additions and 0 deletions

34
package.json Normal file
View File

@ -0,0 +1,34 @@
{
"name": "@idea/plugin-sdk",
"version": "0.1.0",
"description": "Minimal public TypeScript SDK for IdeA plugins.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:hello-plugin": "tsc -p examples/hello-plugin/tsconfig.build.json",
"package:hello-plugin": "npm run build && npm run build:hello-plugin && node scripts/package-hello-plugin.mjs",
"typecheck:examples": "tsc -p examples/hello-plugin/tsconfig.json --noEmit",
"check": "npm run build && npm run typecheck:examples && npm run package:hello-plugin"
},
"keywords": [
"idea",
"plugins",
"sdk"
],
"license": "MIT",
"devDependencies": {
"typescript": "^5.5.0"
}
}