java
Version:
Bridge API to connect with existing Java APIs.
62 lines (61 loc) • 1.67 kB
JSON
{
"name": "java",
"description": "Bridge API to connect with existing Java APIs.",
"author": "Joe Ferner <joe@fernsroth.com>",
"keywords": [
"java",
"jvm",
"bridge"
],
"version": "0.16.1",
"engines": {
"node": ">=8.0.0"
},
"maintainers": [
{
"name": "Joe Ferner",
"email": "joe@fernsroth.com"
}
],
"bugs": {
"url": "https://github.com/joeferner/node-java/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joeferner/node-java.git"
},
"dependencies": {
"find-java-home": "^2.0.0",
"glob": "^11.0.2",
"nan": "^2.22.2",
"node-gyp": "^11.2.0"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/find-root": "^1.1.4",
"@types/node": "^22.15.21",
"chalk": "^4.1.2",
"eslint": "^9.27.0",
"find-root": "^1.1.0",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.4"
},
"scripts": {
"install": "node-gyp rebuild",
"clean": "rm -rf build",
"test": "tsc && node ./build/ts/scripts/testRunner.js",
"postinstall": "node ./scripts/postInstall.js",
"lint": "eslint --ext js,ts,tsx --report-unused-disable-directives --max-warnings 0 .",
"format": "prettier --write .",
"format-cpp": "clang-format --version; find src-cpp/ -iname '*.h' -o -iname '*.cpp' | xargs clang-format -i",
"build-ts": "tsc",
"build-ts:watch": "tsc --watch",
"precommit": "npm run format-cpp && npm run format && npm run lint && npm run build-ts && npm test"
},
"main": "./index.js",
"types": "./java.d.ts"
}