This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@totto2727/result",
"author": "totto2727 <kaihatu.totto2727@gmail.com>",
"description": "Rust-inspired Result-type package",
"homepage": "https://github.com/totto2727-org/result#readme",
"bugs": {
"url": "https://github.com/totto2727-org/result/issues"
},
"keywords": [
"result",
"utils",
"fp",
"functional",
"programming",
"typescript"
],
"license": "MIT",
"version": "0.6.8",
"scripts": {
"deploy": "",
"build": "run-z build:transpile,build:esm,build:cjs",
"build:transpile": "bun build.mts",
"build:esm": "tsc --project tsconfig.build.esm.json",
"build:cjs": "tsc --project tsconfig.build.cjs.json",
"check": "run-z check:type,check:static",
"check:type": "tsc --noEmit",
"check:static": "biome check .",
"fix": "$npm_execpath run check:static --apply-unsafe",
"test": "bun test",
"precommit": "run-z check:type fix test build",
"prepublish": "attw --pack .",
"run-z": "run-z"
},
"files": [
"src",
"dist",
"package.json",
"tsconfig.json",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./dist/import/index.d.mts",
"default": "./dist/import/index.mjs"
},
"require": {
"types": "./dist/require/index.d.cts",
"default": "./dist/require/index.cjs"
}
},
"./eager": {
"import": {
"types": "./dist/import/eager.d.mts",
"default": "./dist/import/eager.mjs"
},
"require": {
"types": "./dist/require/eager.d.cts",
"default": "./dist/require/eager.cjs"
}
},
"./lazy": {
"import": {
"types": "./dist/import/lazy.d.mts",
"default": "./dist/import/lazy.mjs"
},
"require": {
"types": "./dist/require/lazy.d.cts",
"default": "./dist/require/lazy.cjs"
}
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.0",
"@biomejs/biome": "1.5.3",
"@changesets/cli": "^2.27.1",
"bun-types": "^1.0.15",
"esbuild": "^0.20.0",
"run-z": "^2.0.0",
"typescript": "5.3.3"
}
}