-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "@u17g/deferrable",
"description": "A tiny defer utility for JavaScript/TypeScript: register cleanup/rollback callbacks that run in LIFO order. Works in any runtime (Node.js, Bun, Deno, browsers).",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/u17g/deferrable.git"
},
"bugs": {
"url": "https://github.com/u17g/deferrable/issues"
},
"homepage": "https://github.com/u17g/deferrable#readme",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"type": "module",
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"test": "bun test",
"build": "bun run scripts/build.ts",
"prepack": "bun run build",
"prepublishOnly": "bun test && bun run build"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}