-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 KB
/
package.json
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
{
"name": "@kineticcafe/result",
"type": "module",
"version": "0.6.2",
"description": "A Result type loosely based on Rust Result",
"author": "Kinetic Commerce & contributors",
"homepage": "https://github.com/KineticCafe/result#readme",
"bugs": {
"url": "https://github.com/KineticCafe/result/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/KineticCafe/result.git"
},
"license": "Apache-2.0",
"keywords": [],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsc --noEmit && pkgroll",
"build:all": "pnpm run build && pnpm run build:docs",
"build:docs": "typedoc",
"build:watch": "concurrently 'pkgroll --watch' 'typedoc --watch --preserveWatchOutput'",
"check": "biome check .",
"check:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"prepack": "pnpm build",
"lint": "biome lint .",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch"
},
"files": ["dist", "*.md", "licenses/*"],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^20.17.21",
"@vitest/coverage-v8": "^3.0.7",
"concurrently": "^9.1.2",
"pkgroll": "^2.11.2",
"publint": "^0.3.7",
"tsx": "^4.19.3",
"typedoc": "^0.27.9",
"typedoc-material-theme": "^1.3.0",
"typescript": "^5.8.2",
"vitest": "^3.0.7"
},
"pnpm": {
"overrides": {
"esbuild": "^0.25.0"
}
},
"packageManager": "[email protected]+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b"
}