-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "delay-gleam",
"version": "1.2.0",
"description": "A dead simple data-structure for delaying side effects ⌚!",
"main": "dist/delay.mjs",
"type": "module",
"types": "dist/delay.d.mts",
"repository": {
"type": "git",
"url": "https://github.com/bwireman/delay"
},
"homepage": "https://github.com/bwireman/delay#usage-within-javascript--directly",
"author": {
"name": "Ben Wireman",
"url": "http://benwireman.com/"
},
"bugs": {
"url": "https://github.com/bwireman/delay/issues"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/delay.mjs",
"./extras": "./dist/extras/extras.mjs"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "./scripts/build_js.sh",
"prepublishOnly": "./scripts/build_js.sh",
"test": "./scripts/test.sh"
},
"devDependencies": {
"@cross/test": "npm:@jsr/cross__test",
"@std/assert": "npm:@jsr/std__assert",
"dets": "^0.14.2",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "3.2.5",
"sync-fetch": "^0.5.2",
"typescript": "^5.3.3",
"yaml": "^2.4.4"
},
"keywords": [
"gleam",
"monad",
"effect",
"side-effect",
"sideeffect",
"browser",
"nodejs",
"typescript",
"functor",
"delayed"
]
}