-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.07 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.07 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
{
"name": "@tutorialkit/react",
"version": "1.5.0",
"description": "TutorialKit's React components and utilities",
"author": "StackBlitz Inc.",
"type": "module",
"bugs": "https://github.com/stackblitz/tutorialkit/issues",
"homepage": "https://github.com/stackblitz/tutorialkit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stackblitz/tutorialkit.git",
"directory": "packages/react"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./core": {
"import": {
"types": "./dist/core.d.ts",
"default": "./dist/core.js"
}
},
"./core/CodeMirrorEditor": {
"import": {
"types": "./dist/core/CodeMirrorEditor/index.d.ts",
"default": "./dist/core/CodeMirrorEditor/index.js"
}
},
"./core/FileTree": {
"import": {
"types": "./dist/core/FileTree.d.ts",
"default": "./dist/core/FileTree.js"
}
},
"./core/Terminal": {
"import": {
"types": "./dist/core/Terminal/index.d.ts",
"default": "./dist/core/Terminal/index.js"
}
},
"./dialog": {
"import": {
"types": "./dist/core/Dialog.d.ts",
"default": "./dist/core/Dialog.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "node ./scripts/build.js",
"dev": "node ./scripts/build.js --watch",
"test": "vitest --passWithNoTests"
},
"dependencies": {
"@codemirror/autocomplete": "^6.16.3",
"@codemirror/commands": "^6.6.0",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-wast": "^6.0.2",
"@codemirror/language": "^6.10.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.28.1",
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.2.0",
"@lezer/javascript": "^1.2.0",
"@lezer/lr": "^1.0.0",
"@nanostores/react": "0.7.2",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@replit/codemirror-lang-svelte": "^6.0.0",
"@tutorialkit/runtime": "workspace:*",
"@tutorialkit/theme": "workspace:*",
"@webcontainer/api": "1.5.1",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"codemirror": "^6.0.1",
"framer-motion": "^11.2.11",
"nanostores": "^0.10.3",
"picomatch": "^4.0.2",
"react": "^18.3.1",
"react-resizable-panels": "^2.0.19"
},
"devDependencies": {
"@codemirror/search": "^6.5.6",
"@tutorialkit/types": "workspace:*",
"@types/picomatch": "^3.0.1",
"@types/react": "^18.3.3",
"chokidar": "3.6.0",
"execa": "^9.2.0",
"typescript": "^5.4.5",
"vitest": "^3.0.5"
}
}