Files
OpenArchiver/packages/types/package.json
wayneshn a0f8cd5d05 feat(types): update license types and prepare @open-archiver/types for public publish
- Add `LicensePingRequest` and `LicensePingResponse` interfaces for the license server ping endpoint
- Update `LicenseStatusPayload` to include `lastCheckedAt` and `planSeats` fields, and change status from `REVOKED` to `INVALID`
- Update `ConsolidatedLicenseStatus` to reflect `INVALID` status and add `lastCheckedAt`
- Bump `@open-archiver/types` version from 0.1.0 to 0.1.2, set license to MIT, make package public, and add `files` field
2026-03-02 13:49:46 +01:00

25 lines
391 B
JSON

{
"name": "@open-archiver/types",
"version": "0.1.2",
"license": "MIT License",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"devDependencies": {
"@types/node": "^24.0.13",
"typescript": "^5.0.0"
},
"dependencies": {
"jose": "^6.0.11"
}
}