-
Notifications
You must be signed in to change notification settings - Fork 374
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.71 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.71 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@tobikodata/sqlmesh-common",
"version": "0.0.1",
"devDependencies": {
"@eslint/js": "9.31.0",
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-tooltip": "1.2.8",
"@storybook/addon-docs": "9.1.5",
"@storybook/react-vite": "9.1.5",
"@tailwindcss/typography": "0.5.16",
"@tanstack/react-virtual": "3.13.12",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/dagre": "0.7.53",
"@types/node": "20.11.25",
"@types/react": "18.3.23",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "4.7.0",
"@vitest/browser": "3.2.4",
"@xyflow/react": "12.8.4",
"autoprefixer": "10.4.21",
"browserslist": "4.26.2",
"caniuse-lite": "1.0.30001746",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cronstrue": "3.3.0",
"dagre": "0.8.5",
"deepmerge": "4.3.1",
"eslint": "9.31.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-storybook": "9.1.5",
"fuse.js": "7.1.0",
"globals": "16.3.0",
"lucide-react": "0.542.0",
"playwright": "1.54.1",
"postcss": "8.5.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"storybook": "9.1.5",
"syncpack": "13.0.4",
"tailwind-merge": "3.3.1",
"tailwind-scrollbar": "3.1.0",
"tailwindcss": "3.4.17",
"typescript": "5.8.3",
"typescript-eslint": "8.38.0",
"vite": "6.3.5",
"vite-plugin-dts": "4.5.4",
"vite-plugin-static-copy": "3.1.1",
"vitest": "3.2.4"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/sqlmesh-common.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/sqlmesh-common.umd.js"
}
},
"./styles/*": "./dist/styles/*",
"./design/*": "./dist/styles/design/*",
"./configs/*": "./dist/configs/*",
"./lineage": {
"import": {
"types": "./dist/lineage/index.d.ts",
"default": "./dist/lineage/index.es.js"
},
"require": {
"types": "./dist/lineage/index.d.ts",
"default": "./dist/lineage/index.umd.js"
}
}
},
"files": [
"/dist"
],
"license": "Apache-2.0",
"main": "dist/sqlmesh-common.umd.js",
"module": "dist/sqlmesh-common.es.js",
"peerDependencies": {
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-tooltip": "1.2.8",
"@tailwindcss/typography": "0.5.16",
"@tanstack/react-virtual": "3.13.12",
"@xyflow/react": "12.8.4",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cronstrue": "3.3.0",
"dagre": "0.8.5",
"deepmerge": "4.3.1",
"fuse.js": "7.1.0",
"lucide-react": "0.542.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "3.3.1",
"tailwind-scrollbar": "3.1.0",
"tailwindcss": "3.4.17"
},
"private": false,
"repository": "TobikoData/sqlmesh",
"scripts": {
"build": "tsc -p tsconfig.build.json && vite build --base './' && pnpm run build:css",
"build-storybook": "storybook build",
"build:css": "tailwindcss -i ./src/styles/index.css -o ./dist/styles/tailwind.min.css --minify",
"build:storybook": "storybook build",
"ci": "pnpm run syncpack && pnpm run lint && pnpm run build",
"dev": "storybook dev -p 6006",
"lint": "eslint --max-warnings 0 --fix src",
"storybook": "storybook dev -p 6006",
"syncpack": "syncpack lint",
"syncpack:fix": "syncpack fix-mismatches",
"syncpack:format": "syncpack format",
"syncpack:list": "syncpack list-mismatches",
"test": "vitest",
"test:ui": "vitest --ui",
"test:watch": "vitest watch"
},
"type": "module",
"types": "dist/index.d.ts"
}