-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.19 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.19 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
76
77
78
79
{
"name": "react-mesmerizing",
"version": "1.0.2",
"type": "module",
"description": "React library with mesmerizing components including BallEscapeCanvas - interactive animation with rotating rings and bouncing ball. Features customizable colors, backgrounds, and themes.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/aplinxy9plin/react-mesmerizing.git"
},
"homepage": "https://react-mesmerizing.0x69.tech",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^27.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-docs": "^9.1.1",
"@storybook/addon-onboarding": "^9.1.1",
"@storybook/react-vite": "^9.1.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.12.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^9.1.1",
"ts-jest": "^29.4.1",
"tslib": "^2.8.1",
"typescript": "^5.4.2"
},
"keywords": [
"react",
"component",
"ball-escape",
"mesmerizing",
"games",
"interactive",
"canvas",
"animation",
"3d",
"2d",
"webgl",
"webgpu",
"three.js",
"library"
],
"author": "Nikita Aplin",
"license": "MIT"
}