-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@roxyapi/sdk",
"version": "1.2.2",
"description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
"type": "module",
"exports": {
".": {
"types": "./dist/factory.d.ts",
"import": "./dist/factory.js",
"require": "./dist/factory.cjs"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js",
"require": "./dist/client/index.cjs"
}
},
"main": "./dist/factory.cjs",
"module": "./dist/factory.js",
"types": "./dist/factory.d.ts",
"files": [
"dist",
"src",
"docs",
"AGENTS.md"
],
"scripts": {
"generate": "bun run scripts/generate.ts",
"build": "tsup src/factory.ts src/client/index.ts --format esm,cjs && tsc -p tsconfig.build.json --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check": "biome check . --fix"
},
"keywords": [
"astrology",
"tarot",
"numerology",
"API",
"SDK",
"spiritual",
"roxy",
"vedic",
"iching",
"crystals",
"angel-numbers",
"dreams"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RoxyAPI/sdk-typescript.git"
},
"homepage": "https://roxyapi.com/docs/sdk",
"bugs": {
"url": "https://github.com/RoxyAPI/sdk-typescript/issues"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@hey-api/client-fetch": "0.13.1",
"@hey-api/openapi-ts": "0.94.5",
"@types/node": "^25.5.0",
"lefthook": "^2.1.4",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}