mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
33 lines
687 B
JSON
33 lines
687 B
JSON
{
|
|
"name": "napi-rs",
|
|
"version": "0.1.0",
|
|
"description":
|
|
"A minimal library for building compiled Node add-ons in Rust.",
|
|
"bin": {
|
|
"napi": "scripts/napi.js"
|
|
},
|
|
"scripts": {
|
|
"check": "scripts/napi.js check"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/atom/napi.git"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/atom/napi/issues"
|
|
},
|
|
"homepage": "https://github.com/atom/napi#readme",
|
|
"dependencies": {
|
|
"minimist": "^1.2.0"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"arrowParens": "always",
|
|
"parser": "typescript"
|
|
}
|
|
}
|