mirror of
https://gitee.com/openharmony/napi_generator
synced 2024-11-23 16:30:17 +00:00
e6a8383fef
Merge pull request !34 from bayanxing/master
32 lines
1.2 KiB
JSON
32 lines
1.2 KiB
JSON
{
|
|
"name": "napi_generator",
|
|
"version": "1.0.0",
|
|
"description": "This paper mainly introduces the NAPi framework code generation tool, which can generate NAPi framework code, business code framework and designed.the GN file according to the TS interface file in the path specified by the user. So developers need to focus on Nodejs related grammar framework layer, interface between c + + with JS type conversion, data type conversion, etc.. This tool is mainly used in the scenario of JS application calling NaPi interface, can focus on business logic implementation, Thus, the development efficiency can be greatly improved. Currently, the tool supports command line and VScode plug-in.",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"doc": "docs"
|
|
},
|
|
"dependencies": {
|
|
"mocha": "^9.2.1",
|
|
"node-gyp": "^8.4.1",
|
|
"stdio": "^2.1.1",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"devDependencies": {},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@gitee.com:joeysun001/napi_generator.git"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bin": "./src/gen/cmd_gen.js",
|
|
"pkg": {
|
|
"assets": [
|
|
"src/node_modules/typescript/**/*"
|
|
]
|
|
}
|
|
}
|