{ "name": "napi-rs", "version": "0.0.0", "description": "A minimal library for building compiled Node add-ons in Rust.", "private": "true", "workspaces": ["cli", "triples", "memory-testing"], "repository": { "type": "git", "url": "git@github.com:Brooooooklyn/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": "tsc -p tsconfig.json -m esnext && yarn bundle && shx chmod 777 cli/scripts/index.js && node -r ts-node/register/transpile-only ./generate-triple-list.ts", "build:bench": "yarn --cwd ./bench build", "build:memory": "yarn --cwd ./memory-testing build", "build:test": "yarn --cwd ./examples/napi-compat-mode build && yarn --cwd ./examples/napi build", "build:test:aarch64": "yarn --cwd ./examples/napi-compat-mode build-aarch64 && yarn --cwd ./examples/napi build-aarch64", "build:test:android": "yarn --cwd ./examples/napi-compat-mode build --target aarch64-linux-android && yarn --cwd ./examples/napi build --target aarch64-linux-android", "build:test:android:armv7": "yarn --cwd ./examples/napi-compat-mode build --target armv7-linux-androideabi && yarn --cwd ./examples/napi build --target armv7-linux-androideabi", "build:test:armv7": "yarn --cwd ./examples/napi-compat-mode build-armv7 && yarn --cwd ./examples/napi build-armv7", "bundle": "rollup -c rollup.config.js", "format": "prettier . -w && yarn format:rs", "format:rs": "cargo fmt", "lint": "eslint -c .eslintrc.yml .", "prepublishOnly": "npm run build && pinst --disable", "test": "ava", "test:memory": "node memory-testing/index.mjs", "postinstall": "husky install", "postpublish": "pinst --enable" }, "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": ["prettier --write"], "*.@(yml|yaml)": ["prettier --parser yaml --write"], "*.json": ["prettier --parser json --write"], "*.md": ["prettier --parser markdown --write"] }, "husky": { "hooks": { "pre-commit": "lint-staged && cargo fmt --all" } }, "devDependencies": { "@rollup/plugin-alias": "^3.1.8", "@rollup/plugin-commonjs": "^21.0.1", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^13.0.6", "@rollup/plugin-replace": "^3.0.0", "@types/debug": "^4.1.7", "@types/lodash-es": "^4.17.5", "@types/node": "^16.11.11", "@types/sinon": "^10.0.6", "@typescript-eslint/eslint-plugin": "^5.6.0", "@typescript-eslint/parser": "^5.6.0", "ava": "^3.15.0", "benny": "^3.7.1", "c8": "^7.10.0", "chalk": "4", "cross-env": "^7.0.3", "esbuild": "^0.14.2", "eslint": "^8.4.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.25.3", "eslint-plugin-prettier": "^4.0.0", "husky": "^7.0.4", "lerna": "^4.0.0", "lint-staged": "^12.1.2", "npm-run-all": "^4.1.5", "prettier": "^2.5.1", "rollup": "^2.60.2", "shx": "^0.3.3", "sinon": "^12.0.1", "source-map-support": "^0.5.21", "ts-node": "^10.4.0", "tslib": "^2.3.1", "typescript": "^4.5.2" } }