forked from e3ntity/react-sounds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.85 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.85 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": "react-sounds",
"version": "1.0.25",
"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"
},
"keywords": [
"react",
"sounds",
"audio",
"sound-effects",
"ui-sounds"
],
"author": "Lukas Schneider <lukas@aedilic.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",
"@types/howler": "^2.2.7",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"aws-cli": "^0.0.2",
"dotenv": "^16.5.0",
"eslint": "^8.18.0",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typescript": "^4.7.4",
"yargs": "^17.7.2"
},
"files": [
"dist",
"bin"
],
"bin": {
"react-sounds-cli": "./bin/react-sounds-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aediliclabs/react-sounds.git"
},
"bugs": {
"url": "https://github.com/aediliclabs/react-sounds/issues"
},
"homepage": "https://reactsounds.com",
"dependencies": {
"howler": "^2.2.3"
}
}