nmake/package.json

29 lines
598 B
JSON
Raw Normal View History

2024-08-11 02:23:59 +00:00
{
"name": "nmake",
"version": "0.0.1",
"description": "一个用Nodejs作为框架编译C/C++的代码库,未来可能会支持更多语言",
"main": "./src/index.ts",
"scripts": {
"dev": "tsc && node ./build/index.js"
},
"repository": {
"type": "git",
"url": "https://git.zziyu.cn/Zengtudor/nmake"
},
"keywords": [
"c++",
"c",
"make"
],
"author": "Zengtudor",
"license": "MIT",
"devDependencies": {
2024-08-11 02:48:23 +00:00
"@types/minimist": "^1.2.5",
"@types/node": "^22.2.0",
2024-08-11 02:23:59 +00:00
"typescript": "^5.5.4"
},
"dependencies": {
"minimist": "^1.2.8"
}
}