-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "@tutorialkit/theme",
"version": "1.6.0",
"description": "TutorialKit theme configuration",
"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/theme"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./transition-theme": {
"import": "./dist/transition-theme.js",
"types": "./dist/transition-theme.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b",
"dev": "pnpm run build --watch --preserveWatchOutput",
"test": "vitest"
},
"dependencies": {
"@iconify-json/ph": "^1.1.13",
"@iconify-json/svg-spinners": "^1.1.2",
"fast-glob": "^3.3.2",
"unocss": "66.5.2"
},
"devDependencies": {
"@types/node": "^22.4.1",
"typescript": "^5.4.5",
"vitest": "^3.0.5"
}
}