mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2026-09-24 09:02:00 +00:00
* Implement round-trip encoding/decoding for UTF-8 values in header functions. * Update encodeHeaderValue and decodeHeaderValue to use base64 utility functions. * Add tests for UTF-8 header value handling. * Update Vite config to externalize base64 utility.
70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"name": "@warkypublic/resolvespec-js",
|
|
"version": "1.0.1",
|
|
"description": "TypeScript client library for ResolveSpec REST, HeaderSpec, and WebSocket APIs",
|
|
"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"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "vitest run",
|
|
"lint": "eslint src"
|
|
},
|
|
"keywords": [
|
|
"resolvespec",
|
|
"headerspec",
|
|
"websocket",
|
|
"rest-client",
|
|
"typescript",
|
|
"api-client"
|
|
],
|
|
"author": "Hein (Warkanum) Puth",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@warkypublic/artemis-kit": "^1.0.10",
|
|
"uuid": "^14.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^3.0.3",
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/jsdom": "^30.0.0",
|
|
"@types/node": "^26.6.2",
|
|
"eslint": "^10.11.0",
|
|
"globals": "^17.12.0",
|
|
"jsdom": "^30.1.1",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.70.1",
|
|
"vite": "^8.3.0",
|
|
"vite-plugin-dts": "^5.1.1",
|
|
"vitest": "^5.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bitechdev/ResolveSpec"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/bitechdev/ResolveSpec/issues"
|
|
},
|
|
"homepage": "https://github.com/bitechdev/ResolveSpec#readme",
|
|
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
|
|
} |