@eljs/create-template
Version:
Create a new project powered by @eljs/create.
54 lines • 1.28 kB
JSON
{
"name": "@eljs/create-template",
"version": "1.3.1",
"description": "Create a new project powered by @eljs/create.",
"keywords": [
"eljs",
"create-template",
"web common template",
"node common template"
],
"homepage": "https://github.com/chnliquan/eljs/tree/master/packages/create-template#readme",
"bugs": {
"url": "https://github.com/chnliquan/eljs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/chnliquan/eljs",
"directory": "packages/create-template"
},
"license": "MIT",
"author": "liquan",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"bin": {
"create-template": "bin/create-template.js"
},
"files": [
"esm/*",
"lib/*",
"bin/*"
],
"dependencies": {
"commander": "^13.1.0",
"update-notifier": "^5.1.0",
"@eljs/create": "1.3.1",
"@eljs/utils": "1.3.1"
},
"devDependencies": {
"@types/update-notifier": "^6.0.8"
},
"engines": {
"node": ">=16.20.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "father build",
"clean": "rimraf lib && rimraf esm && rimraf node_modules/.cache/father",
"dev": "father dev"
}
}