14d11e23d4
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
105 lines
3 KiB
JSON
105 lines
3 KiB
JSON
{
|
|
"name": "napi-rs",
|
|
"version": "0.0.0",
|
|
"description": "A minimal library for building compiled Node add-ons in Rust.",
|
|
"workspaces": [
|
|
"bench",
|
|
"cli",
|
|
"triples",
|
|
"memory-testing",
|
|
"examples/napi",
|
|
"examples/napi-compat-mode",
|
|
"examples/binary",
|
|
"crates/cli"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:napi-rs/napi-rs.git"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"bench": "cross-env TS_NODE_PROJECT='./bench/tsconfig.json' node -r ts-node/register/transpile-only bench/bench.ts",
|
|
"build": "lerna run build --scope '@napi-rs/*'",
|
|
"build:bench": "yarn workspace bench build",
|
|
"build:memory": "yarn workspace memory-testing build",
|
|
"build:test": "lerna run build --stream --concurrency 1 --scope '@examples/*'",
|
|
"format": "run-p format:prettier format:rs format:toml",
|
|
"format:prettier": "prettier . -w",
|
|
"format:rs": "cargo fmt",
|
|
"format:toml": "taplo format",
|
|
"lint": "eslint -c .eslintrc.yml .",
|
|
"test": "lerna run test --ignore @napi-rs/cli",
|
|
"test:cli": "yarn workspace @napi-rs/cli test",
|
|
"test:electron": "electron examples/napi/electron.js",
|
|
"test:macro": "cargo test -p napi-examples",
|
|
"test:memory": "node memory-testing/index.mjs",
|
|
"postinstall": "husky install",
|
|
"prepublish": "yarn build"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/napi-rs/napi-rs/issues"
|
|
},
|
|
"homepage": "https://github.com/napi-rs/napi-rs#readme",
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"arrowParens": "always"
|
|
},
|
|
"lint-staged": {
|
|
"*.@(js|ts)": [
|
|
"eslint --fix"
|
|
],
|
|
"*.@(js||ts|json|md|yml|yaml)": [
|
|
"prettier --write"
|
|
],
|
|
"*.toml": [
|
|
"taplo format"
|
|
],
|
|
"*.rs": [
|
|
"cargo fmt --"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged && cargo fmt --all"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "workspace:*",
|
|
"@rollup/plugin-alias": "^5.0.0",
|
|
"@rollup/plugin-commonjs": "^24.0.1",
|
|
"@rollup/plugin-json": "^6.0.0",
|
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
"@rollup/plugin-replace": "^5.0.2",
|
|
"@taplo/cli": "^0.5.2",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/lodash-es": "^4.17.7",
|
|
"@types/node": "^18.15.11",
|
|
"@types/sinon": "^10.0.13",
|
|
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
"@typescript-eslint/parser": "^5.57.1",
|
|
"ava": "^5.2.0",
|
|
"c8": "^7.13.0",
|
|
"cross-env": "^7.0.3",
|
|
"electron": "24.1.3",
|
|
"esbuild": "^0.17.16",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"husky": "^8.0.3",
|
|
"lerna": "^6.6.1",
|
|
"lint-staged": "^13.2.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.8.7",
|
|
"shx": "^0.3.4",
|
|
"sinon": "^15.0.3",
|
|
"source-map-support": "^0.5.21",
|
|
"ts-node": "^10.9.1",
|
|
"tslib": "^2.5.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"packageManager": "yarn@3.5.0"
|
|
}
|