-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
44
45
46
47
48
49
50
{
"type": "module",
"name": "rettime",
"version": "0.11.8",
"description": "A type-safe marriage of `EventTarget` and `EventEmitter`.",
"main": "./build/index.mjs",
"types": "./build/index.d.mts",
"files": [
"build",
"src"
],
"scripts": {
"dev": "tsdown -w",
"test": "vitest",
"benchmark": "vitest bench",
"build": "tsdown",
"lint": "publint",
"release": "release publish"
},
"imports": {
"#src/*": "./src/*"
},
"exports": {
".": {
"types": "./build/index.d.mts",
"default": "./build/index.mjs"
}
},
"keywords": [
"emitter",
"event",
"dispatcher",
"type-safe",
"strict",
"event-target"
],
"author": "Artem Zakharchenko <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/kettanaito/rettime"
},
"devDependencies": {
"@ossjs/release": "^0.10.1",
"@rolldown/binding-darwin-arm64": "1.0.0-rc.9",
"publint": "^0.3.18",
"tsdown": "^0.19.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}