-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "react-global-audio",
"version": "1.1.0",
"description": "Route-safe global audio manager + hooks for React apps.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs",
"dev": "tsup src/index.ts --dts --format esm,cjs --watch",
"test": "vitest",
"test:run": "vitest run",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tnalxmsk/react-global-audio.git"
},
"keywords": [
"react",
"audio",
"hooks",
"global-audio"
],
"author": "Tnalxmsk <alstnwkd990@naver.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tnalxmsk/react-global-audio/issues"
},
"homepage": "https://github.com/Tnalxmsk/react-global-audio#readme",
"peerDependencies": {
"react": "^18 || ^19"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jsdom": "^27.0.0",
"@types/react": "^19.2.9",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}