-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 992 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 992 Bytes
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
{
"name": "use-listen-along",
"description": "A react hook to listen alongside others on spotify.",
"version": "1.4.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Matt <matt@dont-ping.me>",
"module": "dist/wrap-listen-along.esm.js",
"repository": "git://github.com/punctuations/use-listen-along.git",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint src",
"prepare": "tsdx build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"husky": "^4.3.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"keywords": [
"listen-along",
"react",
"hook"
],
"dependencies": {
"dayjs": "^1.10.6"
}
}