nmake/package.json

33 lines
704 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",
2024-08-11 07:23:31 +00:00
"type": "commonjs",
2024-08-11 02:23:59 +00:00
"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 14:59:13 +00:00
"@types/lodash": "^4.17.7",
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": {
2024-08-11 14:59:13 +00:00
"lodash": "^4.17.21",
2024-08-11 08:59:49 +00:00
"minimist": "^1.2.8",
"ts-node": "^10.9.2"
2024-08-11 02:23:59 +00:00
}
}