18 lines
479 B
JSON
18 lines
479 B
JSON
{
|
|
"name": "project-template",
|
|
"version": "1.0.0",
|
|
"description": "Project template with CI/CD pipeline",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "mkdir -p dist && echo '// built' > dist/index.js",
|
|
"lint": "echo 'Lint passed' && exit 0",
|
|
"typecheck": "echo 'Typecheck passed' && exit 0",
|
|
"start": "node dist/index.js",
|
|
"dev": "echo 'Dev server starting...'"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {}
|
|
}
|