-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "react-audio-tracks",
"version": "1.2.7",
"description": "A light-weight solution to manage audio tracks and captions in front-end web projects. Provides a handy custom react hook.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"export-module": "module-export.bat",
"lint": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/AndyLeezard/react-audio-tracks.git",
"demo": "https://react-audio-tracks.vercel.app"
},
"author": "Andy Lee <[email protected]> (https://github.com/AndyLeezard)",
"bugs": {
"url": "https://github.com/AndyLeezard/react-audio-tracks/issues"
},
"homepage": "https://github.com/AndyLeezard/react-audio-tracks#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"react",
"audio",
"track",
"audio tracks",
"react-audio-tracks"
],
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/react": "^18.0.35",
"prettier": "^3.0.3",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"react": "^18.2.0"
}
}