-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.86 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.86 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
{
"name": "@tabula/ui-kit",
"version": "1.0.0",
"private": true,
"description": "Reusable packages designed for Retable Inc. products",
"type": "module",
"keywords": [
"tabula.io",
"tomat.ai",
"ui-kit"
],
"homepage": "https://github.com/ReTable/ui-kit#readme",
"bugs": {
"url": "https://github.com/ReTable/ui-kit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ReTable/ui-kit.git"
},
"author": "Retable Inc.",
"license": "ISC",
"packageManager": "pnpm@10.13.1",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "^10.0.0",
"typescript": "^6.0.0"
}
},
"patchedDependencies": {
"@tabula/forge": "patches/@tabula__forge.patch"
}
},
"engines": {
"node": "^24",
"pnpm": "^10"
},
"scripts": {
"build": "turbo build",
"build:docs": "turbo build:docs",
"build:watch": "turbo build:watch",
"docs:build": "storybook build --output-dir docs",
"docs:watch": "storybook dev -p 6006",
"lint": "NODE_OPTIONS=\"--max-old-space-size=8192\" eslint .",
"release": "changeset publish",
"scaffold:component": "plop --plopfile plopfile.mjs component",
"scaffold:hook": "plop --plopfile plopfile.mjs hook",
"scaffold:library": "plop --plopfile plopfile.mjs library",
"test": "turbo test"
},
"devDependencies": {
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.31.0",
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/config-pnpm-scopes": "^20.5.2",
"@eslint/compat": "^2.0.5",
"@ngneat/falso": "^8.0.2",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-links": "^10.3.5",
"@storybook/react": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@tabula/eslint-config": "^1.1.1",
"@tabula/forge": "^4.0.2",
"@tabula/prettier-config": "workspace:*",
"@tabula/typescript-config": "workspace:*",
"@tabula/vitest-config": "workspace:*",
"@testing-library/dom": "catalog:",
"@testing-library/jest-dom": "catalog:",
"@testing-library/react": "catalog:",
"@testing-library/user-event": "catalog:",
"@types/node": "^24.12.2",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vanilla-extract/css": "catalog:",
"@vanilla-extract/css-utils": "catalog:",
"@vanilla-extract/dynamic": "catalog:",
"@vanilla-extract/vite-plugin": "^5.2.2",
"change-case": "^5.4.4",
"esbuild": "^0.28.0",
"eslint": "^10.2.1",
"execa": "^9.6.1",
"handlebars": "^4.7.9",
"happy-dom": "catalog:",
"lefthook": "^2.1.6",
"plop": "^4.0.5",
"prettier": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"storybook": "^10.3.5",
"tsx": "^4.21.0",
"turbo": "^2.9.6",
"typescript": "catalog:",
"vite": "^8.0.10",
"vitest": "catalog:"
}
}