nmake/package.json

37 lines
781 B
JSON
Raw Normal View History

2024-08-11 02:23:59 +00:00
{
2024-08-12 09:07:22 +00:00
"name": "cnmake",
2024-08-12 09:38:51 +00:00
"version": "0.0.6",
2024-08-11 02:23:59 +00:00
"description": "一个用Nodejs作为框架编译C/C++的代码库,未来可能会支持更多语言",
2024-08-12 09:38:51 +00:00
"main": "./dist/index.js",
2024-08-12 06:29:07 +00:00
"type": "module",
2024-08-12 09:38:51 +00:00
"types": "./src/index.ts",
2024-08-12 09:27:25 +00:00
"bin": {
"cnmake": "./dist/index.js"
},
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
}
}