create-kt-plugin
Version:
A template for creating a KT plugins for ExtendScript
24 lines (23 loc) • 511 B
JSON
{
"name": "my-plugin",
"version": "1.0.0",
"description": "",
"author": "",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"build": "kt-build",
"build-tests": "kt-build build-tests",
"debug-build-tests": "kt-build debug-build-tests"
},
"files": [
"src",
"tsconfig.json"
],
"dependencies": {
"kt-core": "^1.0.0"
},
"devDependencies": {
"kt-extendscript-builder": "*"
}
}