-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "svelte-sound",
"version": "0.6.0",
"description": "An utility for playing sounds in Svelte using svelte actions",
"type": "module",
"main": "./dist/svelte-sound.cjs",
"module": "./dist/svelte-sound.js",
"exports": {
".": {
"import": "./dist/svelte-sound.js",
"require": "./dist/svelte-sound.cjs",
"types": "./dist/sound.d.ts"
}
},
"types": "dist/sound.d.ts",
"scripts": {
"build": "vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"author": "Rajaniraiyn R <rajaniraiyn@gmail.com>",
"devDependencies": {
"@types/howler": "^2.2.7",
"terser": "^5.19.2",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"vite": "^5.0.3",
"vite-plugin-dts": "^4.2.2"
},
"dependencies": {
"howler": "^2.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rajaniraiyn/svelte-sound.git"
},
"keywords": [
"svelte",
"svelte-sound",
"howler",
"svelte",
"actions"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Rajaniraiyn/svelte-sound/issues"
},
"homepage": "https://github.com/Rajaniraiyn/svelte-sound#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}