-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.61 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.61 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
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
{
"name": "react-sounds",
"version": "1.0.30",
"description": "A library of ready-to-play sound effects for React applications.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist/ && rollup -c && cp src/manifest.json dist/",
"build:sounds": "npm run generate-manifest && npm run generate-types && npm run upload-to-cdn",
"build:all": "npm run build:sounds && npm run build",
"lint": "eslint src",
"generate-manifest": "node scripts/generate-manifest.js",
"upload-to-cdn": "node scripts/upload-to-cdn.js",
"generate-types": "node scripts/generate-types.js",
"test": "vitest run",
"test:integration": "npm run build && cd test/integration/nextjs && npm install && npx next build"
},
"keywords": [
"react",
"sounds",
"audio",
"sound-effects",
"ui-sounds",
"react-hooks",
"use-sound",
"notification-sounds",
"game-sounds",
"ambient-sounds",
"arcade-sounds",
"system-sounds",
"web-audio",
"howler",
"howlerjs",
"sound-library",
"audio-effects",
"button-sounds",
"click-sounds",
"react-audio",
"sound-design",
"ux",
"typescript",
"nextjs",
"cdn"
],
"author": "Lukas Schneider <lu.schneider@protonmail.com>",
"license": "MIT",
"peerDependencies": {
"howler": "^2.2.3",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.797.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/howler": "^2.2.7",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"aws-cli": "^0.0.2",
"dotenv": "^16.5.0",
"eslint": "^8.18.0",
"jsdom": "^28.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typescript": "^4.7.4",
"vitest": "^4.0.18",
"yargs": "^17.7.2"
},
"files": [
"dist",
"bin"
],
"bin": {
"react-sounds-cli": "./bin/react-sounds-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/e3ntity/react-sounds.git"
},
"bugs": {
"url": "https://github.com/e3ntity/react-sounds/issues"
},
"homepage": "https://reactsounds.com",
"dependencies": {
"howler": "^2.2.3"
}
}