-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.97 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
{
"name": "react-animated-waves",
"description": "Canvas-based animated waves for ReactJS",
"version": "1.0.10",
"type": "module",
"private": false,
"packageManager": "pnpm@9.7.0",
"license": "MIT",
"homepage": "https://github.com/agrawal-rohit/react-animated-waves#readme",
"bugs": "https://github.com/agrawal-rohit/react-animated-waves/issues",
"repository": "https://github.com/agrawal-rohit/react-animated-waves",
"author": "Rohit Agrawal <29514438+agrawal-rohit@users.noreply.github.com>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"test-mutations": "stryker run",
"playground": "vite --config playground/vite.config.ts",
"cov": "vitest run --coverage --passWithNoTests",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"lint": "pnpm exec biome lint --write",
"format": "pnpm exec biome format --write",
"check": "pnpm run typecheck && pnpm exec biome check --write",
"check:ci": "pnpm run typecheck && pnpm exec biome check"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.1",
"tailwindcss": "^4.2.1"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@fontsource/geist-sans": "^5.2.5",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/typescript-checker": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.1.4",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.0",
"git-cliff": "^2.12.0",
"happy-dom": "^20.8.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsdown": "^0.21.3",
"typescript": "^5.9.2",
"vite": "^8.0.0",
"vitest": "^4.1.0"
}
}