-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.58 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
{
"name": "@tailor-platform/app-shell",
"version": "1.9.0",
"description": "An opinionated React application framework for building ERP applications on Tailor Platform",
"keywords": [
"app-shell",
"erp",
"react",
"routing",
"sidebar",
"tailor-platform",
"vite"
],
"homepage": "https://github.com/tailor-platform/app-shell/tree/main/packages/core#readme",
"bugs": {
"url": "https://github.com/tailor-platform"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tailor-platform/app-shell",
"directory": "packages/core"
},
"files": [
"dist/**",
"skills/**"
],
"type": "module",
"exports": {
"./styles": "./dist/app-shell.css",
"./theme.css": "./dist/theme.shims.css",
"./themes/*": "./dist/themes/*.css",
".": {
"types": "./dist/app-shell.d.ts",
"default": "./dist/app-shell.js"
},
"./vite-plugin": {
"types": "./dist/vite-plugin.d.ts",
"default": "./dist/vite-plugin.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite build --watch --mode development",
"build": "vite build",
"lint": "oxlint -c .oxlintrc.jsonc",
"test": "vitest run",
"type-check": "tsc --incremental"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@internationalized/date": "3.12.2",
"@standard-schema/spec": "^1.1.0",
"@tailor-platform/app-shell-vite-plugin": "workspace:*",
"@tailor-platform/auth-public-client": "^0.5.1",
"change-case": "^5.4.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"encoding-japanese": "^2.2.0",
"lucide-react": "^1.8.0",
"openai": "6.45.0",
"papaparse": "^5.5.3",
"react-router": "^7.14.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@tailwindcss/postcss": "catalog:",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/encoding-japanese": "^2.2.1",
"@types/node": "catalog:",
"@types/papaparse": "^5.5.2",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"happy-dom": "^20.9.0",
"postcss": "^8",
"react": "catalog:",
"react-dom": "catalog:",
"tailwindcss": "catalog:",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vite": "catalog:",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-externalize-deps": "^0.10.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "catalog:"
},
"peerDependencies": {
"react": ">= 19",
"react-dom": ">= 19"
}
}