ts-npm-init
Version:
创建TypeScript NPM库的现代化模板
46 lines (45 loc) • 837 B
JSON
{
"name": "ts-npm-init",
"version": "0.1.0",
"private": false,
"description": "创建TypeScript NPM库的现代化模板",
"main": "index.js",
"bin": {
"ts-npm-init": "bin/init.js"
},
"files": [
"bin",
"templates"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "echo \"No test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://gitee.com/jl15988/npm-dependent-template/tree/npm-init"
},
"keywords": [
"npm",
"package",
"template",
"typescript",
"rollup",
"css",
"scss",
"npm-template",
"init",
"generator"
],
"author": "jl15988",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.5",
"ora": "^5.4.1"
}
}