|
2 | 2 | "name": "react-wavesurfer.js",
|
3 | 3 | "version": "0.0.5",
|
4 | 4 | "description": "React bindings for wavesurfer.js",
|
5 |
| - "repository": { |
6 |
| - "type": "git", |
7 |
| - "url": "git+https://github.com/amilajack/react-wavesurfer.js.git" |
8 |
| - }, |
9 |
| - "bugs": { |
10 |
| - "url": "https://github.com/amilajack/react-wavesurfer.js/issues" |
11 |
| - }, |
12 |
| - "homepage": "https://github.com/amilajack/react-wavesurfer.js", |
13 | 5 | "keywords": [
|
14 | 6 | "react",
|
15 | 7 | "wavesurfer",
|
|
22 | 14 | "zoom",
|
23 | 15 | "timeline"
|
24 | 16 | ],
|
| 17 | + "homepage": "https://github.com/amilajack/react-wavesurfer.js", |
| 18 | + "bugs": { |
| 19 | + "url": "https://github.com/amilajack/react-wavesurfer.js/issues" |
| 20 | + }, |
| 21 | + "repository": { |
| 22 | + "type": "git", |
| 23 | + "url": "git+https://github.com/amilajack/react-wavesurfer.js.git" |
| 24 | + }, |
25 | 25 | "license": "MIT",
|
26 | 26 | "author": "Amila Welihinda <[email protected]>",
|
27 | 27 | "main": "./dist/index.js",
|
|
31 | 31 | ],
|
32 | 32 | "scripts": {
|
33 | 33 | "build": "rm -rf dist && tsc && npm run build-storybook && rm -rf storybook-static",
|
| 34 | + "build-storybook": "build-storybook", |
| 35 | + "deploy-storybook": "storybook-to-ghpages", |
34 | 36 | "docs": "rm -rf docs && typedoc ./src --out",
|
35 | 37 | "lint": "eslint . --ignore-pattern dist --fix",
|
36 |
| - "start": "npm run storybook", |
37 |
| - "test": "npm run build && jest && tsc", |
| 38 | + "prepare": "husky install", |
38 | 39 | "release": "standard-version",
|
| 40 | + "start": "npm run storybook", |
39 | 41 | "storybook": "start-storybook -p 6006",
|
40 |
| - "build-storybook": "build-storybook", |
41 |
| - "deploy-storybook": "storybook-to-ghpages", |
42 |
| - "prepare": "husky install" |
| 42 | + "test": "npm run build && jest && tsc" |
43 | 43 | },
|
44 | 44 | "commitlint": {
|
45 | 45 | "extends": [
|
|
72 | 72 | "import/prefer-default-export": "off"
|
73 | 73 | }
|
74 | 74 | },
|
| 75 | + "release": { |
| 76 | + "branches": [ |
| 77 | + "main" |
| 78 | + ] |
| 79 | + }, |
75 | 80 | "jest": {
|
76 | 81 | "preset": "ts-jest",
|
77 | 82 | "testEnvironment": "jsdom"
|
78 | 83 | },
|
79 | 84 | "devDependencies": {
|
80 |
| - "@commitlint/cli": "^13.2.1", |
81 |
| - "@commitlint/config-conventional": "^13.2.0", |
82 |
| - "@storybook/addon-actions": "^6.3.7", |
83 |
| - "@storybook/addon-essentials": "^6.3.7", |
84 |
| - "@storybook/addon-links": "^6.3.7", |
85 |
| - "@storybook/react": "^6.3.7", |
86 |
| - "@storybook/storybook-deployer": "^2.8.11", |
87 |
| - "@testing-library/jest-dom": "^5.16.3", |
88 |
| - "@testing-library/react": "^12.1.3", |
89 |
| - "@types/jest": "^27.0.2", |
90 |
| - "@types/react": "^17.0.38", |
91 |
| - "@types/react-addons-test-utils": "^0.14.26", |
92 |
| - "@types/react-dom": "^17.0.11", |
93 |
| - "@types/wavesurfer.js": "^5.2.2", |
94 |
| - "@typescript-eslint/eslint-plugin": "^4.33.0", |
95 |
| - "canvas": "^2.9.0", |
96 |
| - "eslint": "7.32.0", |
97 |
| - "eslint-config-airbnb": "18.2.1", |
98 |
| - "eslint-config-bliss-typescript": "^5.0.0", |
99 |
| - "eslint-plugin-import": "^2.24.2", |
100 |
| - "eslint-plugin-jsx-a11y": "^6.4.1", |
101 |
| - "eslint-plugin-react": "^7.24.0", |
102 |
| - "eslint-plugin-react-hooks": "4.2.0", |
103 |
| - "gh-pages": "^3.2.3", |
104 |
| - "husky": "^7.0.4", |
105 |
| - "jest": "^27.1.0", |
106 |
| - "prettier": "^2.3.2", |
107 |
| - "react": "^17.0.2", |
108 |
| - "react-dom": "^17.0.2", |
109 |
| - "standard-version": "^9.3.2", |
110 |
| - "ts-jest": "^27.0.5", |
111 |
| - "typedoc": "^0.21.9", |
112 |
| - "typescript": "^4.4.3", |
113 |
| - "wavesurfer.js": "^5.2.0" |
| 85 | + "@commitlint/cli": "^17.1.2", |
| 86 | + "@commitlint/config-conventional": "^17.1.0", |
| 87 | + "@storybook/addon-actions": "^6.5.10", |
| 88 | + "@storybook/addon-essentials": "^6.5.10", |
| 89 | + "@storybook/addon-links": "^6.5.10", |
| 90 | + "@storybook/react": "^6.5.10", |
| 91 | + "@storybook/storybook-deployer": "^2.8.12", |
| 92 | + "@testing-library/jest-dom": "^5.16.5", |
| 93 | + "@testing-library/react": "^13.3.0", |
| 94 | + "@types/jest": "^29.0.0", |
| 95 | + "@types/react": "^18.0.18", |
| 96 | + "@types/react-dom": "^18.0.6", |
| 97 | + "@types/wavesurfer.js": "^6.0.3", |
| 98 | + "@typescript-eslint/eslint-plugin": "^5.36.1", |
| 99 | + "canvas": "^2.9.3", |
| 100 | + "eslint": "8.23.0", |
| 101 | + "eslint-config-airbnb": "19.0.4", |
| 102 | + "eslint-config-bliss-typescript": "^6.0.1", |
| 103 | + "eslint-plugin-import": "^2.26.0", |
| 104 | + "eslint-plugin-jsx-a11y": "^6.6.1", |
| 105 | + "eslint-plugin-react": "^7.31.4", |
| 106 | + "eslint-plugin-react-hooks": "4.6.0", |
| 107 | + "gh-pages": "^4.0.0", |
| 108 | + "husky": "^8.0.1", |
| 109 | + "jest": "^28.1.3", |
| 110 | + "jest-environment-jsdom": "^29.0.2", |
| 111 | + "prettier": "^2.7.1", |
| 112 | + "react": "^18.2.0", |
| 113 | + "react-dom": "^18.2.0", |
| 114 | + "standard-version": "^9.5.0", |
| 115 | + "ts-jest": "^28.0.8", |
| 116 | + "typedoc": "^0.23.14", |
| 117 | + "typescript": "^4.8.2", |
| 118 | + "wavesurfer.js": "^6.2.0" |
114 | 119 | },
|
115 | 120 | "peerDependencies": {
|
116 | 121 | "react": ">=17.0.2",
|
117 | 122 | "react-dom": ">=17.0.2",
|
118 |
| - "wavesurfer.js": "^5.2.0" |
| 123 | + "wavesurfer.js": "5.x.x || 6.x.x" |
119 | 124 | },
|
120 | 125 | "renovate": {
|
121 | 126 | "extends": [
|
122 | 127 | "bliss"
|
123 | 128 | ]
|
124 |
| - }, |
125 |
| - "release": { |
126 |
| - "branches": [ |
127 |
| - "main" |
128 |
| - ] |
129 | 129 | }
|
130 | 130 | }
|
0 commit comments