nmake/package.json

40 lines
872 B
JSON

{
"name": "cnmake",
"version": "0.0.12",
"description": "一个用Nodejs作为框架编译C/C++的代码库,未来可能会支持更多语言",
"main": "./dist/src/index.js",
"type": "module",
"types": "./dist/src/index.d.ts",
"bin": {
"cnmake": "./dist/src/index.js"
},
"files": [
"dist", "LICENSE", "README.md", "package.json"
],
"scripts": {
"dev": "tsc && node ./dist/src/index.js -v"
},
"repository": {
"type": "git",
"url": "https://git.zziyu.cn/Zengtudor/nmake"
},
"keywords": [
"c++",
"c",
"make"
],
"author": "Zengtudor",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.17.7",
"@types/minimist": "^1.2.5",
"@types/node": "^22.2.0",
"typescript": "^5.5.4"
},
"dependencies": {
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"ts-node": "^10.9.2"
}
}