-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 760 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 760 Bytes
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
{
"name": "event-bus",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"prebuild": "rimraf dist",
"build": "vite build"
},
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"happy-dom": "^20.8.9",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.8",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.4"
},
"files": [
"dist",
"README.md"
]
}