-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
129 lines (129 loc) · 4.5 KB
/
package.json
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
125
126
127
128
129
{
"name": "@mezh-hq/react-seat-toolkit",
"version": "3.0.0",
"description": "React UI library to design and render seat layouts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"private": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs"
}
},
"./slim": "./dist/index.slim.js",
"./styles": "./dist/index.css",
"./raw-styles": "./dist/styles/index.css",
"./types": "./dist/types/index.d.ts"
},
"scripts": {
"build": "bun run ./esbuild.config.js",
"build:css": "bunx tailwindcss -i src/styles/index.css -o ./dist/index.css --minify && cp -r src/styles dist/styles && rm dist/styles/storybook.css",
"build:types": "bunx tsc --project ./tsconfig.declaration.json && tsc-alias --project ./tsconfig.declaration.json && cd dist && ls -d */ | grep -Ev 'actions|types' | xargs rm -rf && cp ./index.d.ts ./index.slim.d.ts",
"bump-version": "bunx --bun automatic-versioning --disable-auto-sync --recursive $(if [ \"$TAG\" != \"latest\" ]; then echo --prerelease; fi) --prerelease-branch=development --prerelease-tag=$TAG --name=@mezh-hq/react-seat-toolkit --ignore-prefixes=ci",
"format": "bunx prettier --write --cache \"**/*.{js,jsx,ts,tsx,md,css,yml}\"",
"lint": "bun run --bun eslint . --ext js,jsx,ts,tsx --ignore-path .gitignore --fix --cache --report-unused-disable-directives",
"storybook": "NODE_ENV=storybook storybook dev -p 6006",
"build-storybook": "storybook build",
"postbuild": "bun build:types && bun build:css",
"prepare": "lefthook install",
"release": "bunx github:akalanka47000/bunpublish --tag=${TAG:=latest} --provenance",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"package.json",
"README.md"
],
"keywords": [
"Designer",
"Seats",
"Layout",
"Hall arrangement",
"Editor"
],
"author": "Akalanka Perera, Miyuru Gunarathna",
"license": "MIT",
"homepage": "https://github.com/mezh-hq/react-seat-toolkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mezh-hq/react-seat-toolkit.git"
},
"bugs": {
"url": "https://github.com/mezh-hq/react-seat-toolkit/issues"
},
"dependencies": {
"@interactjs/actions": "1.10.26",
"@interactjs/auto-start": "1.10.26",
"@interactjs/interact": "1.10.26",
"@mezh-hq/react-gridlines": "1.0.1",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-switch": "1.1.0",
"@radix-ui/react-tooltip": "1.0.6",
"@reduxjs/toolkit": "2.1.0",
"class-variance-authority": "0.7.0",
"d3": "7.8.5",
"lodash": "4.17.21",
"lucide-react": "0.316.0",
"react-redux": "9.1.0",
"tailwind-merge": "1.13.2",
"uuid": "9.0.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@dreamworld/addon-redux": "1.1.0",
"@interactjs/types": "1.10.26",
"@sliit-foss/automatic-versioning": "2.3.4",
"@storybook/addon-essentials": "7.3.2",
"@storybook/addon-interactions": "7.3.2",
"@storybook/addon-links": "7.3.2",
"@storybook/blocks": "7.3.2",
"@storybook/manager-api": "7.3.2",
"@storybook/react": "7.3.2",
"@storybook/react-vite": "7.3.2",
"@storybook/testing-library": "0.2.0",
"@storybook/theming": "7.3.2",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/d3": "7.4.3",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"autoprefixer": "10.4.14",
"bun-types": "1.0.21",
"esbuild": "0.20.1",
"eslint": "8.49.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.13",
"lefthook": "1.4.3",
"postcss": "8.4.31",
"prettier": "2.8.8",
"sonner": "1.5.0",
"storybook": "7.3.2",
"storybook-addon-deep-controls": "0.2.1",
"tailwindcss": "3.4.6",
"tailwindcss-animate": "1.0.6",
"tailwindcss-scoped-preflight": "3.4.3",
"tsc-alias": "1.8.8",
"vite": "4.5.2"
},
"overrides": {
"jsondiffpatch": "^0.5.0",
"use-sync-external-store": "1.2.0"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}