e5a779ced2
When npm install runs in server/ and processes the file: dep at vendor/keysat-licensing-client/, it fires the vendor's 'prepare' script even with --ignore-scripts (npm bug for file/git deps). The prepare script calls tsup which isn't installed in the build container, so the build fails with 'sh: 1: tsup: not found'. The vendored copy ships its prebuilt dist/ in the repo, so we don't need tsup. Drop the scripts entirely.
34 lines
851 B
JSON
34 lines
851 B
JSON
{
|
|
"name": "@keysat/licensing-client",
|
|
"version": "0.2.0",
|
|
"description": "Client library for Keysat. Verifies signed license keys offline and wraps the HTTP API for purchase and revocation checks.",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"files": ["dist", "README.md", "LICENSE"],
|
|
"scripts": {},
|
|
"keywords": [
|
|
"bitcoin",
|
|
"licensing",
|
|
"btcpay",
|
|
"start9",
|
|
"ed25519"
|
|
],
|
|
"repository": "https://github.com/keysat-xyz/keysat-client-ts",
|
|
"license": "MIT",
|
|
"engines": { "node": ">=18" },
|
|
"dependencies": {
|
|
"@noble/ed25519": "^2.0.0",
|
|
"@noble/hashes": "^1.3.3"
|
|
},
|
|
"devDependencies": {}
|
|
}
|