-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "idaas-ts-sdk-generator",
"version": "1.0.0",
"private": true,
"description": "Identity as a Service TypeScript SDK Generator",
"license": "ISC",
"author": "Andrew MacCuaig <andrewmaccuaig@gmail.com>",
"type": "module",
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"typescript": "^5.9.2",
"@oazapfts/runtime": "^1.1.0"
}
},
"scripts": {
"build": "bun ./bin/generate",
"download": "bun ./bin/download",
"lint": "biome check ./bin ./tests",
"lint:fix": "biome check --write ./bin ./tests",
"test": "bun test",
"validate": "bun ./bin/validate"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@arethetypeswrong/cli": "0.18.2",
"@maccuaa/intellitrust-admin-sdk": "workspace:*",
"@maccuaa/intellitrust-auth-sdk": "workspace:*",
"@maccuaa/intellitrust-issuance-sdk": "workspace:*",
"@types/bun": "1.3.12",
"@typescript/native-preview": "7.0.0-dev.20260420.1",
"oazapfts": "7.5.0",
"bunup": "0.16.31",
"publint": "0.3.18",
"typescript": "catalog:"
}
}