-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"name": "@gemini/use-audio",
"version": "1.0.0",
"description": "Plays audio and exposes its controls.",
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"keywords": [
"react",
"hooks",
"audio"
],
"homepage": "https://github.com/bdwenxi/use-audio",
"repository": "git@github.com:bdwenxi/use-audio.git",
"author": "bdwenxi <bdwenxi@gmail.com>",
"contributors": [
{
"name": "bdwenxi",
"email": "bdwenxi@gmail.com"
}
],
"files": [
"src",
"cjs",
"es"
],
"scripts": {
"build": "rm -rf es cjs && tsc & tsc --module esnext --outDir ./es",
"build:check": "tsc",
"test": "skr test --coverage"
},
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"devDependencies": {
"@testing-library/react-hooks": "^3.4.1",
"@types/react": "^16.9.49",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"reskript": "^0.26.7",
"typescript": "^4.0.3"
}
}