-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.27 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
{
"name": "@fullstackcraftllc/codevideo-ide-react",
"version": "0.0.180",
"description": "A React TypeScript component for a fully auditable, drivable, and replayable IDE written in React with @radix-ui/theme styling.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c ./rollup.config.js",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"example:local": "bash scripts/example-local.sh",
"predeploy": "cd example && npm run clean && npm run build-for-gh-pages && cd ..",
"deploy": "gh-pages -d example/public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codevideo/codevideo-ide-react.git"
},
"keywords": [
"TypeScript",
"React",
"codevideo"
],
"author": "Chris Frewin",
"license": "MIT",
"bugs": {
"url": "https://github.com/codevideo/codevideo-ide-react/issues"
},
"homepage": "https://github.com/codevideo/codevideo-ide-react#readme",
"devDependencies": {
"@fullstackcraftllc/codevideo-types": "^2.2.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.4",
"gh-pages": "^6.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0-beta.3",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.14.0",
"ts-jest": "^29.3.4",
"typescript": "^5.8.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@fullstackcraftllc/codevideo-virtual-ide": "^1.0.43",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/themes": "^3.2.1",
"@react-symbols/icons": "^1.2.8",
"dompurify": "^3.2.5",
"esbuild-wasm": "^0.25.5",
"highlight.js": "^11.11.1",
"kokoro-js": "^1.2.1",
"marked": "^15.0.10",
"marked-highlight": "^2.2.1",
"monaco-editor": "^0.52.2"
}
}