peekr-ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app-dist/assets/html2canvas.esm-CBrSDip1.js +22 -0
- package/app-dist/assets/index-1MZtsq3m.js +10 -0
- package/app-dist/assets/index-6L7HbM6T.js +14 -0
- package/app-dist/assets/index-B0RUQXnF.css +1 -0
- package/app-dist/assets/index-BEvgfipD.js +14 -0
- package/app-dist/assets/index-BILhrFul.js +14 -0
- package/app-dist/assets/index-BTI1uWbg.js +14 -0
- package/app-dist/assets/index-BahkwADB.css +1 -0
- package/app-dist/assets/index-Ch1Vufae.js +1 -0
- package/app-dist/assets/index-CpVBHCeV.css +1 -0
- package/app-dist/assets/index-DRY37lHS.js +14 -0
- package/app-dist/assets/index-QUrMozVE.css +1 -0
- package/app-dist/assets/index-xYLc0tdj.css +1 -0
- package/app-dist/assets/react-TTt3KdbJ.js +1 -0
- package/app-dist/assets/router-DSqugVLU.js +59 -0
- package/app-dist/favicon.svg +6 -0
- package/app-dist/index.html +15 -0
- package/dist/index.js +2211 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "peekr-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Zero-config component playground. See any component instantly. No config. No story files. Just run peekr.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"component",
|
|
8
|
+
"playground",
|
|
9
|
+
"storybook-alternative",
|
|
10
|
+
"developer-tools",
|
|
11
|
+
"ui",
|
|
12
|
+
"preview",
|
|
13
|
+
"vite",
|
|
14
|
+
"typescript"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://github.com/peekr-ui/peekr#readme",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/peekr-ui/peekr.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/peekr-ui/peekr/issues"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"type": "module",
|
|
26
|
+
"bin": {
|
|
27
|
+
"peekr": "./dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"main": "./dist/index.js",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": "./dist/index.js"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"app-dist",
|
|
36
|
+
"README.md",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsup && node scripts/copy-app.js",
|
|
41
|
+
"dev": "tsup --watch",
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"prepublishOnly": "pnpm run build"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@babel/parser": "^7.24.5",
|
|
47
|
+
"@babel/traverse": "^7.24.5",
|
|
48
|
+
"@babel/types": "^7.24.5",
|
|
49
|
+
"chalk": "^5.3.0",
|
|
50
|
+
"commander": "^12.1.0",
|
|
51
|
+
"fast-glob": "^3.3.2",
|
|
52
|
+
"open": "^10.1.0",
|
|
53
|
+
"picocolors": "^1.0.1",
|
|
54
|
+
"ts-morph": "^22.0.0",
|
|
55
|
+
"vite": "^5.2.11"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/babel__traverse": "^7.20.6",
|
|
59
|
+
"@types/node": "^20.14.0",
|
|
60
|
+
"tsup": "^8.1.0",
|
|
61
|
+
"typescript": "^5.4.5"
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"react": ">=17.0.0",
|
|
65
|
+
"react-dom": ">=17.0.0"
|
|
66
|
+
},
|
|
67
|
+
"peerDependenciesMeta": {
|
|
68
|
+
"react": {
|
|
69
|
+
"optional": true
|
|
70
|
+
},
|
|
71
|
+
"react-dom": {
|
|
72
|
+
"optional": true
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=18.0.0"
|
|
77
|
+
},
|
|
78
|
+
"publishConfig": {
|
|
79
|
+
"access": "public"
|
|
80
|
+
}
|
|
81
|
+
}
|