-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.51 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
{
"name": "pcall.js",
"version": "0.7.2",
"description": "✱ Minimal Result/Monad like tuples for JS ── zero-dependency ␥",
"author": "metaory <[email protected]>",
"bugs": "https://github.com/metaory/pcall.js/issues",
"homepage": "https://github.com/metaory/pcall.js#readme",
"repository": "git+https://github.com/metaory/pcall.js.git",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "node --test --watch test/pcall.flush.js",
"test": "node --test --test-concurrency 1",
"watch:test": "node --test --watch",
"watch:build": "watchexec -w src -d 300 npm run build",
"build": "npx unbuild",
"build:demo": "sh .github/scripts/gen-img",
"build:stub": "npx unbuild --stub"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.mts",
"module": "./dist/index.mjs",
"files": [
"dist",
"LICENSE"
],
"keywords": [
"async",
"await",
"bind",
"bundleless",
"cjs",
"es2025",
"esm",
"hybrid",
"lua",
"mediator",
"middleware",
"minimal",
"npm",
"pcall",
"pcall.js",
"promise",
"protected",
"safe",
"small",
"tiny",
"unbuild",
"wrap",
"wrapper",
"zero-dependency"
],
"license": "MIT"
}