discord-rpc/package.json
Naomi Carrigan 2940ed5462
All checks were successful
Node.js CI / Lint and Test (push) Successful in 34s
release: v1.0.0
2025-02-18 15:19:42 -08:00

34 lines
1.1 KiB
JSON

{
"name": "discord-rpc",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"prepkg:main": "esbuild src/index.ts --bundle --platform=node --outfile=prod/index.js",
"prepkg:installer": "esbuild src/setup.ts --bundle --platform=node --outfile=prod/setup.js",
"package": "pnpm run pkg:main && pnpm run pkg:installer",
"pkg:main": "pkg prod/index.js --target latest-linux-x64 --output ./bin/naomis-drpc",
"pkg:installer": "pkg prod/setup.js --target latest-linux-x64 --output ./bin/naomis-drpc-setup",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "See License in LICENSE.md",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/discord-rpc": "4.0.8",
"@types/node": "22.13.4",
"@yao-pkg/pkg": "6.3.1",
"esbuild": "0.25.0",
"eslint": "9.20.1",
"typescript": "5.7.3"
},
"dependencies": {
"discord-rpc": "4.0.1"
}
}