-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@subwaytime/waku",
"version": "1.0.4",
"private": false,
"description": "Vue 3 Component DOM Mounting",
"keywords": [
"vite",
"vue",
"vue3",
"dom",
"mount",
"components"
],
"homepage": "https://github.com/subwaytime/waku#readme",
"bugs": "https://github.com/subwaytime/waku/issues",
"repository": {
"type": "git",
"url": "https://github.com/subwaytime/waku"
},
"license": "MIT",
"author": "Subwaytime <leon.l@nophase.de>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"dev": "bunx --bun tsdown --watch",
"bundle": "bunx --bun tsdown",
"clean": "bun run format && bun run lint:fix",
"format": "biome format --write .",
"lint": "biome ci",
"lint:fix": "biome lint --write .",
"prepublishOnly": "bun run bundle",
"release": "bunx git-ensure -a && bunx bumpp --commit --tag --push && bun publish --access public"
},
"dependencies": {
"defu": "^6.1.4",
"mitt": "^3.0.1",
"nanoid": "^5.1.5",
"tsdown": "0.13.1",
"vue": "^3.5.18",
"vue-tsc": "^3.0.5"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@types/bun": "^1.2.19",
"type-fest": "^4.41.0",
"typescript": "^5.9.2",
"unplugin-vue": "^7.0.0",
"vite": "^7.0.6",
"vue-component-type-helpers": "^3.0.5"
},
"peerDependencies": {
"vue": "^3.5.17"
},
"engines": {
"bun": ">=1.2.10"
}
}