-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.61 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.61 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
{
"name": "wellcrafted",
"version": "0.34.0",
"description": "Delightful TypeScript patterns for elegant, type-safe applications",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
"./result": {
"types": "./dist/result/index.d.ts",
"import": "./dist/result/index.js"
},
"./error": {
"types": "./dist/error/index.d.ts",
"import": "./dist/error/index.js"
},
"./json": {
"types": "./dist/json.d.ts",
"import": "./dist/json.js"
},
"./brand": {
"types": "./dist/brand.d.ts",
"import": "./dist/brand.js"
},
"./query": {
"types": "./dist/query/index.d.ts",
"import": "./dist/query/index.js"
},
"./standard-schema": {
"types": "./dist/standard-schema/index.d.ts",
"import": "./dist/standard-schema/index.js"
}
},
"scripts": {
"build": "tsdown",
"format": "biome format --write .",
"lint": "biome lint --write .",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"release": "bun run build && changeset version && changeset publish"
},
"keywords": [
"typescript",
"delightful",
"elegant",
"type-safe",
"well-crafted",
"polished",
"utilities",
"result",
"error-handling",
"brand-types"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wellcrafted-dev/wellcrafted"
},
"devDependencies": {
"@biomejs/biome": "^2.3.3",
"@changesets/cli": "^2.27.10",
"@tanstack/query-core": "^5.82.0",
"@types/bun": "^1.3.5",
"arktype": "^2.1.29",
"tsdown": "^0.12.5",
"typescript": "^5.8.3",
"valibot": "^1.2.0",
"zod": "^4.3.3"
}
}