-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.07 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.07 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
{
"name": "@pmxt/components",
"version": "0.1.1",
"description": "Embeddable prediction market UI components built with React and Tailwind CSS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pmxt-dev/embed",
"directory": "packages/components"
},
"keywords": [
"prediction-markets",
"polymarket",
"react",
"components",
"trading",
"embed",
"white-label"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.mjs",
"require": "./dist/types.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"COMPONENTS.md"
],
"scripts": {
"build": "rm -rf dist && tsup",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@pmxt/sdk": "^0.1.0"
},
"peerDependencies": {
"@rainbow-me/rainbowkit": "^2",
"canvas-confetti": "^1",
"lightweight-charts": "^5",
"next": ">=14",
"react": ">=18",
"react-dom": ">=18",
"wagmi": "^2"
},
"peerDependenciesMeta": {
"@rainbow-me/rainbowkit": {
"optional": true
},
"canvas-confetti": {
"optional": true
},
"next": {
"optional": true
},
"wagmi": {
"optional": true
}
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^8.6.18",
"@storybook/react-vite": "^8.6.18",
"@storybook/test": "^8.6.18",
"@tailwindcss/vite": "^4.2.2",
"@types/canvas-confetti": "^1.9.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"playwright": "^1.58.2",
"storybook": "^8.6.18",
"tsup": "^8.5.1",
"typescript": "^5"
}
}