-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.85 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.85 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
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
106
107
108
109
110
111
112
113
{
"name": "react-vnc",
"version": "3.2.0",
"description": "A React Component to connect to a websockified VNC client using noVNC.",
"author": "roerohan",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"module": "dist/react-vnc.js",
"source": "src/lib/index.tsx",
"typings": "dist/types/lib/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-vnc.js",
"require": "./dist/react-vnc.umd.cjs"
}
},
"keywords": [
"vnc",
"noVNC",
"react-vnc",
"websocket",
"websockify"
],
"engines": {
"node": ">=10"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/roerohan/react-vnc.git"
},
"bugs": {
"url": "https://github.com/roerohan/react-vnc/issues"
},
"dependencies": {
"@novnc/novnc": "^1.5.0",
"@types/novnc__novnc": "^1.6.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"web-vitals": "^4.2.4"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build --mode=app",
"build:lib": "tsc -b && vite build --mode=lib",
"lint": "eslint . --ext .ts --ext .js",
"lint:fix": "npm run lint -- --fix",
"prepare": "is-ci || husky install",
"prepack": "npm run build:lib",
"prepublishOnly": "cp package.json package.json.bak && node prepublish.cjs",
"postpublish": "mv package.json.bak package.json"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"semantic-release": "^24.2.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vite": "^6.1.1",
"vite-plugin-dts": "^4.5.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}