-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.44 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
{
"name": "@uniweb/kit",
"version": "0.13.0",
"description": "Standard component library for Uniweb foundations",
"type": "module",
"exports": {
".": "./src/index.js",
"./xref": "./src/xref/index.js",
"./theme-tokens.css": "./src/theme-tokens.css",
"./prose-tokens.css": "./src/prose-tokens.css",
"./callout-tokens.css": "./src/callout-tokens.css",
"./math-tokens.css": "./src/math-tokens.css"
},
"files": [
"src",
"dist"
],
"sideEffects": [
"*.css"
],
"keywords": [
"uniweb",
"kit",
"components",
"react"
],
"author": "Proximify",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/uniweb/kit.git"
},
"homepage": "https://github.com/uniweb/kit#readme",
"bugs": {
"url": "https://github.com/uniweb/kit/issues"
},
"engines": {
"node": ">=20.19"
},
"scripts": {
"test": "vitest run"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.20",
"@uniweb/core": "workspace:^",
"@uniweb/scene": "workspace:^",
"@uniweb/semantic-parser": "workspace:^",
"clsx": "^2.1.0",
"fuse.js": "^7.0.0",
"shiki": "^3.0.0",
"tailwind-merge": "^3.6.0",
"temml": "^0.13.2"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"jsdom": "^25.0.1",
"tailwindcss": "^4.0.0",
"vitest": "^4.1.7"
}
}