ts-npm-init
Version:
创建TypeScript NPM库的现代化模板
18 lines • 409 B
JSON
{
"name": "test-project",
"version": "1.0.0",
"description": "测试项目,用于测试npm依赖包",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"test"
],
"author": "Test Author",
"license": "MIT",
"dependencies": {
"npm-package-template": "file:../"
}
}