-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "miis",
"version": "1.1.6",
"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",
"linstener"
],
"author": "Yukiniro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yukiniro/miis"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@rslib/core": "^0.5.1",
"@types/node": "^22.8.1",
"@vitest/coverage-v8": "3.0.6",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.6"
},
"dependencies": {
"bittydash": "^0.7.1"
}
}