-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.21 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
{
"name": "react-awesome-audio",
"version": "1.1.0",
"private": false,
"description": "Optimized and Supercharged React hook to play audio without any DOM element 💪🎧",
"author": {
"name": "Niloy Sikdar",
"email": "[email protected]",
"url": "https://github.com/niloysikdar"
},
"repository": {
"type": "git",
"url": "https://github.com/niloysikdar/react-awesome-audio.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/niloysikdar/react-awesome-audio/issues"
},
"homepage": "https://github.com/niloysikdar/react-awesome-audio#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "npx husky install",
"build": "tsc -p tsconfig.json",
"watch": "tsc --watch",
"cm": "cz",
"lint": "eslint src/**/* --fix",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check .",
"lint-staged": "lint-staged",
"semantic-release": "semantic-release --branches main"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged && git add -A ."
}
},
"lint-staged": {
"src/*.{ts,tsx}": [
"npm run prettier:fix",
"npm run prettier:check",
"npm run lint"
]
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@types/node": "^17.0.6",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"react": "^17.0.2",
"semantic-release": "^18.0.1",
"typescript": "^4.5.4"
},
"keywords": [
"react-awesome-audio",
"react",
"awesome",
"audio",
"music",
"sound",
"mp3",
"player",
"react-audio-player",
"react-audio",
"audio-player",
"sound-player",
"music-player",
"react-hooks",
"hooks",
"optimized"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}