-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "@kitbag/events",
"private": false,
"version": "0.3.0",
"bugs": {
"url": "https://github.com/kitbagjs/events/issues"
},
"homepage": "https://github.com/kitbagjs/events#readme",
"scripts": {
"build": "tsc && vite build",
"test": "vitest --typecheck",
"types": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:generate": "vite build && typedoc && sleep 5 && node ./scripts/api.js"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/kitbag-events.umd.cjs",
"module": "./dist/kitbag-events.js",
"types": "./dist/kitbag-events.d.ts",
"exports": {
".": {
"import": "./dist/kitbag-events.js",
"require": "./dist/kitbag-events.umd.cjs"
}
},
"devDependencies": {
"typedoc": "^0.27.7",
"typedoc-plugin-markdown": "^4.4.2",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.0.2",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitepress": "^1.6.3",
"vitest": "^3.0.5"
}
}