@onkernel/create-kernel-app
Version:
Create Kernel sample applications
72 lines (71 loc) • 1.59 kB
JSON
{
"name": "@onkernel/create-kernel-app",
"version": "0.1.22",
"description": "Create Kernel sample applications",
"main": "dist/index.js",
"type": "module",
"bin": {
"create-kernel-app": "bin/index.js"
},
"files": [
"bin",
"dist",
"templates"
],
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onkernel/create-kernel-app.git"
},
"scripts": {
"build": "bun build ./index.ts --outdir ./dist --target node",
"lint": "bun run eslint .",
"lint:fix": "bun run eslint . --fix",
"prepublishOnly": "bun run lint && bun run build"
},
"keywords": [
"kernel",
"cli",
"scaffolding",
"automation",
"playwright",
"browser-automation",
"templates"
],
"author": "Kernel",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"ora": "^5.4.1"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.5",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"typescript": "^4.8.4"
},
"trustedDependencies": [
"chalk",
"commander",
"fs-extra",
"inquirer",
"ora"
],
"homepage": "https://onkernel.com",
"bugs": {
"url": "https://github.com/onkernel/create-kernel-app/issues"
},
"publishConfig": {
"access": "public"
}
}