packet.json
一、文件样例
{
"name": "my-project",
"version": "1.0.0",
"description": "A sample Node.js project for demonstrating packet.json usage",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "webpack --config webpack.config.js",
"test": "jest"
},
"keywords": [
"nodejs",
"example",
"packetjson"
],
"author": "John Doe",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"mysql": "^2.3.3"
},
"devDependencies": {
"webpack": "^5.75.0",
"jest": "^29.5.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/user/my-project.git"
}
}
2025/6/11大约 9 分钟