-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@notross/react-waveform",
"version": "1.0.0",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"react",
"waveform",
"audio",
"visualizer",
"player",
"music"
],
"description": "A React component for rendering audio waveforms, with support for multiple audio sources and custom styling.",
"license": "MIT",
"author": {
"name": "Ross Libby",
"email": "dev@rosslibby.com",
"url": "https://rosslibby.com",
"github": "https://github.com/rosslibby"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rosslibby/react-waveform.git"
},
"scripts": {
"demo": "node demo/dist/server/index.js",
"demo:ui": "webpack serve --port 3000",
"demo:server": "nodemon --exec ts-node demo/server/index.ts",
"demo:dev": "concurrently \"npm run demo:server\" \"npm run demo:ui\"",
"demo:build:server": "tsc --project tsconfig.server.json",
"demo:build:ui": "webpack",
"demo:build": "npm run demo:build:server && npm run demo:build:ui",
"dev": "webpack serve --port 3000",
"build": "tsup",
"lint": "tsc --config tsconfig.ui.json --noEmit",
"prepare": "ts-node prepare-package.ts"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.0",
"cors": "^2.8.5",
"css-loader": "^7.1.2",
"express": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.10",
"postcss": "^8.4.40",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"peerDependencies": {
"react": "^16.9.0 || ^17 || ^18",
"react-dom": "^16.9.0 || ^17 || ^18"
},
"dependencies": {},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}