-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "tryo",
"version": "0.13.10",
"author": {
"name": "sebasxsala",
"url": "https://github.com/sebasxsala"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mint": "latest",
"tsup": "^8.5.1",
"typescript": "^5.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bugs": "https://github.com/sebasxsala/tryo/issues",
"description": "Run sync/async functions and return a typed Result instead of throwing.",
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://tryo-docs.pages.dev/",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"biome check --write"
]
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "bun test",
"docs:dev": "cd docs && mintlify dev",
"docs:dev:es": "cd docs && mintlify dev --config mint.es.json",
"docs:build": "cd docs && mintlify build",
"docs:preview": "cd docs && mintlify preview",
"prepublishOnly": "npm run build",
"format": "biome format --write",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"check": "biome check",
"check:fix": "biome check --write"
},
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts"
}