-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "@microlib/try",
"version": "2.0.7",
"description": "A Promise like quasi monad for Try.",
"keywords": [
"promise",
"try",
"monad"
],
"type": "module",
"module": "src/index.ts",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"bump": "bun scripts/bump.ts",
"release": "bun scripts/release.ts",
"attw": "bunx @arethetypeswrong/cli --pack --profile node16"
},
"devDependencies": {
"@types/bun": "^1.1.11",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"author": {
"name": "tanishqmanuja",
"url": "https://github.com/tanishqmanuja",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microlib-js/try.git"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./interop": {
"require": "./dist/interop.cjs",
"import": "./dist/interop.mjs",
"types": "./dist/interop.d.ts"
},
"./package.json": "./package.json"
}
}