-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
61
{
"name": "@ksv90/event-notifier",
"version": "0.3.0",
"description": "typed event emitter",
"main": "dist/index.js",
"type": "module",
"files": [
"/dist"
],
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "eslint .",
"test": "pnpm test:unit & pnpm test:type",
"test:unit": "vitest --run",
"test:bench": "vitest bench --run",
"test:type": "vitest --typecheck --run",
"test:browser": "vitest --browser=chrome",
"prepare": "husky",
"prepublish": "pnpm run build"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitest/browser": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.3.1",
"webdriverio": "^8.32.3"
},
"keywords": [
"event notifier",
"event emitter"
],
"author": "ksv90",
"license": "ISC",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"homepage": "https://github.com/ksv90/event-notifier",
"repository": {
"type": "git",
"url": "git+https://github.com/ksv90/event-notifier.git"
}
}