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
34 lines (34 loc) · 806 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 806 Bytes
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
{
"name": "@tutorialkit/types",
"version": "1.3.1",
"description": "Types for TutorialKit",
"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/types"
},
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"dev": "pnpm run build --watch --preserveWatchOutput",
"test": "vitest"
},
"dependencies": {
"zod": "3.23.8"
},
"devDependencies": {
"typescript": "^5.4.5",
"vitest": "^2.1.9"
}
}