-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.52 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@distilled.cloud/core",
"version": "0.28.2",
"repository": {
"type": "git",
"url": "https://github.com/alchemy-run/distilled",
"directory": "packages/core"
},
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"files": [
"lib",
"src"
],
"exports": {
"./category": {
"types": "./lib/category.d.ts",
"bun": "./src/category.ts",
"default": "./lib/category.js"
},
"./client": {
"types": "./lib/client.d.ts",
"bun": "./src/client.ts",
"default": "./lib/client.js"
},
"./errors": {
"types": "./lib/errors.d.ts",
"bun": "./src/errors.ts",
"default": "./lib/errors.js"
},
"./json-patch": {
"types": "./lib/json-patch.d.ts",
"bun": "./src/json-patch.ts",
"default": "./lib/json-patch.js"
},
"./pagination": {
"types": "./lib/pagination.d.ts",
"bun": "./src/pagination.ts",
"default": "./lib/pagination.js"
},
"./retry": {
"types": "./lib/retry.d.ts",
"bun": "./src/retry.ts",
"default": "./lib/retry.js"
},
"./retry-after": {
"types": "./lib/retry-after.d.ts",
"bun": "./src/retry-after.ts",
"default": "./lib/retry-after.js"
},
"./schema": {
"types": "./lib/schema.d.ts",
"bun": "./src/schema.ts",
"default": "./lib/schema.js"
},
"./schemas": {
"types": "./lib/schemas.d.ts",
"bun": "./src/schemas.ts",
"default": "./lib/schemas.js"
},
"./sensitive": {
"types": "./lib/sensitive.d.ts",
"bun": "./src/sensitive.ts",
"default": "./lib/sensitive.js"
},
"./traits": {
"types": "./lib/traits.d.ts",
"bun": "./src/traits.ts",
"default": "./lib/traits.js"
},
"./openapi/generate": {
"bun": "./scripts/generate-openapi.ts",
"default": "./scripts/generate-openapi.ts"
},
"./graphql/generate": {
"bun": "./scripts/generate-graphql.ts",
"default": "./scripts/generate-graphql.ts"
}
},
"scripts": {
"typecheck": "tsc",
"build": "tsc -b",
"fmt": "oxfmt --write src",
"lint": "oxlint --fix src",
"check": "tsc && oxlint src && oxfmt --check src",
"test": "bunx vitest run test --exclude specs --passWithNoTests",
"publish:npm": "bun run build && bun publish --access public"
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"dotenv": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"effect": "catalog:"
}
}