create-kt-plugin
Version:
A template for creating a KT plugins for ExtendScript
36 lines (35 loc) • 789 B
JSON
{
"name": "create-kt-plugin",
"version": "1.3.2",
"description": "A template for creating a KT plugins for ExtendScript",
"bin": {
"create-kt-plugin": "./bin/index.js"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"publishOnly": "npm install && npm run build"
},
"keywords": [
"ExtendScript",
"KT",
"plugin"
],
"author": "Miguel de Mendoza",
"license": "ISC",
"dependencies": {
"inquirer": "^12.4.2",
"types-for-adobe": "^7.2.2"
},
"devDependencies": {
"@types/node": "^22.13.5",
"typescript": "^5.7.3"
},
"files": [
"bin/",
"template/",
""
]
}