generated from adelrodriguez/pastry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.91 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.91 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
{
"name": "tryharder",
"version": "0.1.1",
"description": "A better try/catch for TypeScript",
"keywords": [
"abort-signal",
"error-handling",
"retry",
"timeout",
"try-catch"
],
"homepage": "https://github.com/adelrodriguez/tryharder#readme",
"bugs": {
"url": "https://github.com/adelrodriguez/tryharder/issues"
},
"license": "MIT",
"author": "Adel Rodríguez",
"repository": {
"type": "git",
"url": "git+https://github.com/adelrodriguez/tryharder.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./errors": {
"types": "./dist/errors.d.ts",
"import": "./dist/errors.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
}
},
"scripts": {
"bench": "bun run build && bun --expose-gc bench/index.ts",
"bench:ci": "bun run build && bun --expose-gc bench/index.ts --json | bun bench/report.ts",
"build": "bunup",
"bump:deps": "bun update --interactive",
"check": "adamantite check",
"dev": "bunup --watch",
"fix": "adamantite fix",
"release": "changeset publish",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"typecheck": "adamantite typecheck",
"version": "changeset version && bun run format",
"format": "adamantite format",
"analyze": "adamantite analyze"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@clack/prompts": "1.0.1",
"@types/bun": "1.3.9",
"adamantite": "^0.29.1",
"bunup": "0.16.29",
"knip": "5.85.0",
"mitata": "^1.0.34",
"oxfmt": "0.34.0",
"oxlint": "1.49.0",
"oxlint-tsgolint": "0.14.2",
"typescript": "5.9.3"
},
"packageManager": "bun@1.3.1"
}