|
2 | 2 | "name": "@buildo/bento-design-system",
|
3 | 3 | "version": "0.16.4",
|
4 | 4 | "description": "The buildo DS",
|
5 |
| - "main": "lib/index.js", |
| 5 | + "main": "lib/index.cjs", |
| 6 | + "module": "lib/index.js", |
6 | 7 | "files": [
|
7 | 8 | "lib"
|
8 | 9 | ],
|
9 | 10 | "sideEffects": [
|
10 |
| - "*.css", |
11 |
| - "*.css.ts" |
| 11 | + "global.css.ts", |
| 12 | + "reset.css.ts", |
| 13 | + "defaultTheme.css.ts" |
12 | 14 | ],
|
| 15 | + "exports": { |
| 16 | + ".": { |
| 17 | + "node": "./lib/index.cjs", |
| 18 | + "import": "./lib/index.js", |
| 19 | + "require": "./lib/index.cjs" |
| 20 | + }, |
| 21 | + "./index.css": "./lib/index.css", |
| 22 | + "./defaultTheme.css": "./lib/defaultTheme.css" |
| 23 | + }, |
| 24 | + "types": "lib/index.d.ts", |
| 25 | + "type": "module", |
13 | 26 | "scripts": {
|
14 | 27 | "build": "tsup --minify --clean",
|
15 | 28 | "prepublishOnly": "pnpm build",
|
|
20 | 33 | "prepublish": "pnpm test && pnpm build",
|
21 | 34 | "test": "jest",
|
22 | 35 | "lint-staged": "lint-staged",
|
23 |
| - "playroom-start": "playroom start", |
24 |
| - "playroom-build": "playroom build", |
| 36 | + "playroom-start": "playroom start --config playroom.config.cjs", |
| 37 | + "playroom-build": "playroom build --config playroom.config.cjs", |
25 | 38 | "start": "tsup --watch",
|
26 | 39 | "check-circular-deps": "madge --circular src"
|
27 | 40 | },
|
|
84 | 97 | "@vanilla-extract/recipes": "0.2.5",
|
85 | 98 | "@vanilla-extract/sprinkles": "1.5.1",
|
86 | 99 | "clsx": "^1.2.1",
|
| 100 | + "deepmerge-ts": "^4.3.0", |
87 | 101 | "react-cool-dimensions": "^2.0.7",
|
88 | 102 | "react-dropzone": "^14.2.3",
|
89 | 103 | "react-input-mask": "^2.0.4",
|
90 |
| - "react-keyed-flatten-children": "^1.3.0", |
| 104 | + "react-is": "18.2.0", |
91 | 105 | "react-select": "^5.4.0",
|
92 | 106 | "react-table": "^7.8.0",
|
93 | 107 | "react-use": "^17.4.0",
|
94 | 108 | "recharts": "^2.1.16",
|
95 |
| - "ts-deepmerge": "^2.0.3", |
96 | 109 | "ts-pattern": "^3.3.5"
|
97 | 110 | },
|
98 | 111 | "devDependencies": {
|
|
116 | 129 | "@types/react": "18.0.28",
|
117 | 130 | "@types/react-dom": "18.0.11",
|
118 | 131 | "@types/react-input-mask": "2.0.5",
|
| 132 | + "@types/react-is": "^17.0.3", |
119 | 133 | "@types/react-table": "7.7.14",
|
120 | 134 | "@vanilla-extract/babel-plugin": "1.1.7",
|
121 | 135 | "@vanilla-extract/esbuild-plugin": "2.1.0",
|
|
142 | 156 | "style-loader": "3.3.1",
|
143 | 157 | "ts-jest": "28.0.8",
|
144 | 158 | "ts-loader": "9.3.1",
|
145 |
| - "tsup": "6.4.0", |
| 159 | + "tsup": "6.6.3", |
146 | 160 | "typescript": "4.7.4",
|
147 | 161 | "webpack": "5.74.0",
|
148 | 162 | "webpack-cli": "4.10.0"
|
|
0 commit comments