-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
125 lines (125 loc) · 2.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@vueuse/sound",
"version": "2.1.3",
"description": "🔊 A Vue composable for playing sound effects",
"author": {
"name": "Yaël GUILLOUX",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/vueuse/sound#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vueuse/sound.git"
},
"bugs": {
"url": "https://github.com/vueuse/sound/issues"
},
"keywords": [
"vue",
"use",
"sound",
"composable"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./nuxt": {
"types": "./dist/index.d.ts",
"import": "./dist/nuxt.mjs",
"require": "./dist/nuxt.cjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"scripts": {
"build": "unbuild",
"build:demo": "nuxi generate demo",
"dev": "nuxi dev demo",
"prepare": "nuxi prepare demo",
"lint": "eslint .",
"release": "release-it"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"howler": "^2.2.4",
"vue-demi": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@nuxt/content": "^2.13.4",
"@nuxt/kit": "^3.15.0",
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/tailwindcss": "^6.12.2",
"@types/fs-extra": "^11.0.4",
"@types/howler": "^2.2.12",
"@types/prismjs": "^1.26.5",
"@vueuse/motion": "2.2.6",
"bumpp": "^9.9.2",
"c8": "^10.1.3",
"chokidar": "^4.0.3",
"eslint": "^9.17.0",
"fs-extra": "^11.2.0",
"happy-dom": "^16.0.1",
"nuxt": "^3.15.0",
"release-it": "^17.11.0",
"shiki-es": "^0.14.0",
"typescript": "^5.7.2",
"unbuild": "^3.1.0",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"yorkie": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack"
],
"allowAny": [
"vite",
"nuxi",
"@vue/composition-api",
"vue"
]
}
},
"release-it": {
"hooks": {
"before:init": [
"pnpm build"
]
},
"npm": {
"access": "public"
},
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
}
}