-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
105 lines (105 loc) · 2.84 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "video-stream-ascii",
"version": "1.6.2",
"description": "Convert video stream to ascii art",
"homepage": "https://im-rises.github.io/video-stream-ascii-webcam",
"repository": "https://github.com/Im-Rises/video-stream-ascii",
"author": "Im-Rises (Quentin MOREL)",
"private": false,
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "dist/components/VideoAscii.js",
"files": [
"LICENSE",
"README.md",
"package.json",
"tsconfig.json",
"dist/components/VideoAscii.js",
"dist/components/VideoAscii.js.map",
"dist/components/VideoAscii.d.ts",
"dist/components/VideoAscii.d.ts.map",
"src/components/VideoAscii.tsx",
"dist/constants/pixel-ascii.js",
"dist/constants/pixel-ascii.js.map",
"dist/constants/pixel-ascii.d.ts",
"dist/constants/pixel-ascii.d.ts.map",
"src/constants/pixel-ascii.ts",
"dist/canvas-handler/video-canvas-ascii.js",
"dist/canvas-handler/video-canvas-ascii.js.map",
"dist/canvas-handler/video-canvas-ascii.d.ts",
"dist/canvas-handler/video-canvas-ascii.d.ts.map",
"src/canvas-handler/video-canvas-ascii.ts"
],
"keywords": [
"video",
"ascii",
"art",
"stream",
"video-stream",
"video-ascii",
"video-stream-ascii",
"video-ascii-art",
"video-stream-ascii-art"
],
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prepublish": "tsc"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^0.56.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"react-device-detect": "^2.2.3",
"react-scripts": "^5.0.1",
"react-webcam": "^7.0.1",
"sass": "^1.61.0",
"typescript": "^4.9.5",
"web-vitals": "^3.1.1",
"yarn-upgrade-all": "^0.7.2"
},
"xo": {
"extends": "xo-react"
}
}