-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.32 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
{
"name": "miis",
"version": "1.2.0",
"description": "Tiny functional event subscriber and dispatcher.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"format": "prettier --write src/**",
"lint": "eslint src/**",
"test": "vitest run",
"coverage": "vitest run --coverage",
"npm:publish": "npm run build && npm publish"
},
"keywords": [
"event",
"emitter",
"subscribe",
"dispatch",
"listener",
"eventbus",
"pubsub"
],
"author": "Yukiniro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yukiniro/miis"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@rslib/core": "^0.20.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}