-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "@kineticcafe/result",
"type": "module",
"version": "0.6.1",
"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.7",
"@types/node": "^20.14.10",
"@vitest/coverage-v8": "^2.0.2",
"concurrently": "^9.0.1",
"pkgroll": "^2.1.1",
"publint": "^0.2.8",
"tsx": "^4.16.2",
"typedoc": "^0.26.4",
"typedoc-material-theme": "^1.1.0",
"typescript": "^5.5.3",
"vitest": "^2.0.2"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}