2018-04-28 17:26:38 +09:00
|
|
|
{
|
|
|
|
"name": "napi-rs",
|
2019-05-25 13:04:25 +09:00
|
|
|
"version": "0.1.1",
|
2018-05-01 15:17:51 +09:00
|
|
|
"description": "A minimal library for building compiled Node add-ons in Rust.",
|
2018-04-28 17:26:38 +09:00
|
|
|
"bin": {
|
|
|
|
"napi": "scripts/napi.js"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-05-01 15:17:51 +09:00
|
|
|
"url": "git@github.com:Brooooooklyn/napi-rs.git"
|
2018-04-28 17:26:38 +09:00
|
|
|
},
|
2018-05-01 15:17:51 +09:00
|
|
|
"maintainers": [
|
|
|
|
{
|
|
|
|
"name": "LongYinan",
|
|
|
|
"email": "lynweklm@gmail.com",
|
|
|
|
"homepage": "https://github.com/Brooooooklyn"
|
|
|
|
}
|
|
|
|
],
|
2018-04-28 17:26:38 +09:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2018-05-01 15:17:51 +09:00
|
|
|
"url": "https://github.com/Brooooooklyn/napi-rs/issues"
|
2018-04-28 17:26:38 +09:00
|
|
|
},
|
2018-05-01 15:17:51 +09:00
|
|
|
"homepage": "https://github.com/Brooooooklyn/napi-rs#readme",
|
2018-04-28 17:26:38 +09:00
|
|
|
"dependencies": {
|
2020-03-17 06:18:15 +09:00
|
|
|
"minimist": "^1.2.5",
|
2020-02-19 00:05:13 +09:00
|
|
|
"toml": "^3.0.0"
|
2018-04-28 17:26:38 +09:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"printWidth": 80,
|
|
|
|
"semi": false,
|
|
|
|
"singleQuote": true,
|
|
|
|
"trailingComma": "all",
|
2018-07-23 11:18:56 +09:00
|
|
|
"arrowParens": "always"
|
2018-05-01 15:17:51 +09:00
|
|
|
},
|
|
|
|
"files": [
|
2020-03-16 15:26:30 +09:00
|
|
|
"scripts/napi.js",
|
|
|
|
"LICENSE"
|
2018-05-01 15:17:51 +09:00
|
|
|
],
|
|
|
|
"devDependencies": {
|
2020-04-03 06:20:28 +09:00
|
|
|
"@types/node": "^13.11.0",
|
2020-04-07 06:20:48 +09:00
|
|
|
"prettier": "^2.0.4"
|
2018-04-28 17:26:38 +09:00
|
|
|
}
|
|
|
|
}
|