This repository was archived by the owner on Mar 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "majestic-api-contracts",
"version": "1.0.3",
"description": "API response shapes for Majestic: types, schemas, versioning. Shapes only.",
"type": "module",
"main": "src/index.ts",
"packageManager": "pnpm@10.30.3",
"exports": {
".": "./src/index.ts",
"./version": "./src/version.ts",
"./playbackPrediction": "./generated/typescript/playbackPrediction.ts",
"./playbackStatusCode": "./generated/typescript/playbackStatusCode.ts",
"./incompatibility": "./generated/typescript/incompatibility.ts",
"./prewarm": "./generated/typescript/prewarm.ts",
"./apiError": "./generated/typescript/apiError.ts",
"./library": "./generated/typescript/libraryResponse.ts",
"./responseEnvelope": "./src/responseEnvelope.ts"
},
"scripts": {
"generate": "node scripts/generate.mjs",
"check:hash": "pnpm run generate && node scripts/check-hash.mjs",
"check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run generate",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^25.3.0",
"ajv": "^8.12.0",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.4",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
}
},
"files": [
"src",
"generated",
"schemas",
"scripts",
"swift"
]
}