-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
67 lines (67 loc) · 1.93 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@wavesurfer/react",
"version": "1.0.7",
"description": "React component and hook for wavesurfer.js",
"homepage": "https://wavesurfer.xyz",
"repository": {
"type": "git",
"url": "[email protected]:katspaugh/wavesurfer-react.git"
},
"keywords": [
"wavesurfer",
"react",
"audio",
"waveform",
"player"
],
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"build:examples": "cd examples && rollup -c",
"lint": "eslint src",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests",
"test:ci": "yarn test --ci --silent --coverage --json --watchAll=false --testLocationInResults --outputFile=report.json",
"serve": "npx live-server --port=3030 --no-browser --ignore='.*,src,tests'",
"prepublishOnly": "yarn build"
},
"author": "katspaugh",
"license": "BSD-3-Clause",
"peerDependencies": {
"react": "^18.2.0",
"wavesurfer.js": ">=7.7.14"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.26.2",
"rollup-plugin-inject-process-env": "^1.3.1",
"typescript": "^5.0.4",
"wavesurfer.js": "^7.8.1"
},
"jest": {
"transform": {},
"testEnvironment": "jest-environment-jsdom"
}
}