-
Notifications
You must be signed in to change notification settings - Fork 968
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "@webstudio-is/sdk-components-react-remix",
"version": "0.0.0-webstudio-version",
"description": "Webstudio components for Remix",
"author": "Webstudio <github@webstudio.is>",
"homepage": "https://webstudio.is",
"license": "AGPL-3.0-or-later",
"private": false,
"type": "module",
"files": [
"lib/*",
"!*.{test,stories}.*"
],
"sideEffects": false,
"exports": {
".": {
"webstudio": "./src/components.ts",
"types": "./lib/types/components.d.ts",
"import": "./lib/components.js"
},
"./metas": {
"webstudio": "./src/metas.ts",
"types": "./lib/types/metas.d.ts",
"import": "./lib/metas.js"
},
"./props": {
"webstudio": "./src/props.ts",
"types": "./lib/types/props.d.ts",
"import": "./lib/props.js"
}
},
"scripts": {
"build": "vite build --config ../../vite.sdk-components.config.ts",
"build:args": "NODE_OPTIONS=--conditions=webstudio generate-arg-types './src/*.tsx !./src/**/*.stories.tsx !./src/**/*.ws.ts' && prettier --write \"**/*.props.ts\"",
"dts": "tsc --project tsconfig.dts.json",
"typecheck": "tsc"
},
"peerDependencies": {
"@remix-run/react": "^2.9.2",
"react": "18.3.0-canary-14898b6a9-20240318",
"react-dom": "18.3.0-canary-14898b6a9-20240318"
},
"dependencies": {
"@webstudio-is/icons": "workspace:*",
"@webstudio-is/react-sdk": "workspace:*",
"@webstudio-is/sdk": "workspace:*",
"@webstudio-is/sdk-components-react": "workspace:*"
},
"devDependencies": {
"@remix-run/react": "^2.15.0",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.25",
"@webstudio-is/generate-arg-types": "workspace:*",
"@webstudio-is/tsconfig": "workspace:*",
"react": "18.3.0-canary-14898b6a9-20240318",
"react-dom": "18.3.0-canary-14898b6a9-20240318"
}
}