62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "nexus-rpc",
|
|
"version": "0.0.2",
|
|
"description": "Nexus TypeScript SDK",
|
|
"license": "MIT",
|
|
"author": "Temporal Technologies Inc. <sdk@temporal.io>",
|
|
"keywords": [
|
|
"rpc",
|
|
"service",
|
|
"async"
|
|
],
|
|
"homepage": "https://github.com/nexus-rpc/sdk-typescript/tree/main",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nexus-rpc/sdk-typescript.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nexus-rpc/sdk-typescript/issues"
|
|
},
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.31.0",
|
|
"@types/node": "^20.0.0",
|
|
"eslint": "^9.31.0",
|
|
"prettier": "^3.6.2",
|
|
"shx": "^0.4.0",
|
|
"typedoc": "^0.28.7",
|
|
"typedoc-github-theme": "^0.3.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.37.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 20.0.0"
|
|
},
|
|
"devEngines": {
|
|
"packageManager": {
|
|
"name": "pnpm",
|
|
"version": "10.27.0",
|
|
"onFail": "warn"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"!**/*test*"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"build:watch": "tsc --build --watch",
|
|
"build:docs": "typedoc src --plugin typedoc-github-theme",
|
|
"test": "node --enable-source-maps --test lib/**/*.test.js",
|
|
"lint": "eslint src --ext .ts",
|
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
"format": "prettier --check .",
|
|
"format:fix": "prettier --write .",
|
|
"clean": "shx rm -rf lib tsconfig.tsbuildinfo"
|
|
}
|
|
} |