forked from OzCog/tutorialkit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "@tutorialkit/runtime",
"version": "1.3.1",
"description": "TutorialKit runtime",
"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/runtime"
},
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./tasks": "./dist/tasks.js"
},
"files": [
"dist"
],
"typesVersions": {
"*": {
"tasks": [
"dist/tasks.d.ts"
]
}
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"dev": "pnpm run build --watch --preserveWatchOutput",
"test": "vitest"
},
"dependencies": {
"@tutorialkit/types": "workspace:*",
"@webcontainer/api": "1.5.1",
"nanostores": "^0.10.3",
"picomatch": "^4.0.2"
},
"devDependencies": {
"@types/picomatch": "^3.0.1",
"typescript": "^5.4.5",
"vite": "^5.4.21",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.9"
}
}