-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "@tobikodata/sqlmesh-common",
"version": "0.0.1",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/TobikoData/sqlmesh"
},
"files": [
"/dist"
],
"main": "dist/sqlmesh-shared-ui.umd.js",
"module": "dist/sqlmesh-shared-ui.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/sqlmesh-shared-ui.es.js",
"require": "./dist/sqlmesh-shared-ui.umd.js"
}
},
"scripts": {
"ci": "pnpm run lint && pnpm run build",
"build": "tsc -b && vite build --base './'",
"build:storybook": "storybook build",
"dev": "storybook dev -p 6006",
"lint": "eslint --max-warnings 0 --fix src",
"test": "vitest",
"test:watch": "vitest watch",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"eslint": "^9.31.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"typescript-eslint": "^8.38.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}