@mateosuarezdev/flash 0.0.1
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/LICENSE.md +32 -0
- package/README.md +945 -0
- package/dist/debug.cjs +11 -0
- package/dist/debug.d.ts +195 -0
- package/dist/debug.js +28 -0
- package/dist/index.cjs +11 -0
- package/dist/index.d.ts +600 -0
- package/dist/index.js +1335 -0
- package/dist/jsx-dev-runtime-BfTCjShK.js +65 -0
- package/dist/jsx-dev-runtime-D4XANMVW.cjs +11 -0
- package/dist/jsx-dev-runtime.cjs +11 -0
- package/dist/jsx-dev-runtime.d.ts +90 -0
- package/dist/jsx-dev-runtime.js +17 -0
- package/dist/jsx-runtime.cjs +11 -0
- package/dist/jsx-runtime.d.ts +90 -0
- package/dist/jsx-runtime.js +17 -0
- package/dist/server.cjs +27 -0
- package/dist/server.d.ts +60 -0
- package/dist/server.js +224 -0
- package/dist/utils.cjs +11 -0
- package/dist/utils.d.ts +13 -0
- package/dist/utils.js +18 -0
- package/package.json +123 -0
package/package.json
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mateosuarezdev/flash",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Custom jsx runtime",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./server": {
|
|
16
|
+
"types": "./dist/server.d.ts",
|
|
17
|
+
"import": "./dist/server.js",
|
|
18
|
+
"require": "./dist/server.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./utils": {
|
|
21
|
+
"types": "./dist/utils.d.ts",
|
|
22
|
+
"import": "./dist/utils.js",
|
|
23
|
+
"require": "./dist/utils.cjs"
|
|
24
|
+
},
|
|
25
|
+
"./debug": {
|
|
26
|
+
"types": "./dist/debug.d.ts",
|
|
27
|
+
"import": "./dist/debug.js",
|
|
28
|
+
"require": "./dist/debug.cjs"
|
|
29
|
+
},
|
|
30
|
+
"./jsx-runtime": {
|
|
31
|
+
"types": "./dist/jsx-runtime.d.ts",
|
|
32
|
+
"import": "./dist/jsx-runtime.js",
|
|
33
|
+
"require": "./dist/jsx-runtime.cjs"
|
|
34
|
+
},
|
|
35
|
+
"./jsx-dev-runtime": {
|
|
36
|
+
"types": "./dist/jsx-dev-runtime.d.ts",
|
|
37
|
+
"import": "./dist/jsx-dev-runtime.js",
|
|
38
|
+
"require": "./dist/jsx-dev-runtime.cjs"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist/**/*.js",
|
|
43
|
+
"dist/**/*.cjs",
|
|
44
|
+
"dist/**/*.d.ts"
|
|
45
|
+
],
|
|
46
|
+
"sideEffects": false,
|
|
47
|
+
"scripts": {
|
|
48
|
+
"dev": "vite --host",
|
|
49
|
+
"build": "vite build && bun run scripts/prepend-license.ts",
|
|
50
|
+
"build:visualize": "vite-bundle-visualizer",
|
|
51
|
+
"typecheck": "tsc --noEmit",
|
|
52
|
+
"clean": "rimraf dist",
|
|
53
|
+
"prepublish": "yarn clean && yarn build",
|
|
54
|
+
"rel": "yarn npm publish --access public",
|
|
55
|
+
"rel:patch": "yarn version patch && yarn npm publish --access public",
|
|
56
|
+
"rel:minor": "yarn version minor && yarn npm publish --access public",
|
|
57
|
+
"rel:major": "yarn version major && yarn npm publish --access public"
|
|
58
|
+
},
|
|
59
|
+
"packageManager": "yarn@4.10.3",
|
|
60
|
+
"keywords": [
|
|
61
|
+
"flash",
|
|
62
|
+
"jsx",
|
|
63
|
+
"runtime",
|
|
64
|
+
"ui",
|
|
65
|
+
"routing",
|
|
66
|
+
"mpa",
|
|
67
|
+
"ssr",
|
|
68
|
+
"streaming",
|
|
69
|
+
"spa",
|
|
70
|
+
"url",
|
|
71
|
+
"history"
|
|
72
|
+
],
|
|
73
|
+
"author": "Mateo Suarez <mateosuarezdev@gmail.com>",
|
|
74
|
+
"repository": {
|
|
75
|
+
"type": "git",
|
|
76
|
+
"url": "git+https://github.com/mateosuarezdev/brpc-space.git",
|
|
77
|
+
"directory": "packages/flash"
|
|
78
|
+
},
|
|
79
|
+
"bugs": {
|
|
80
|
+
"url": "https://github.com/mateosuarezdev/brpc-space/issues"
|
|
81
|
+
},
|
|
82
|
+
"homepage": "https://github.com/mateosuarezdev/brpc-space/tree/main/packages/react-ui#readme",
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"peerDependencies": {
|
|
85
|
+
"clsx": "^2.1.1",
|
|
86
|
+
"framer-motion": "^12.0.0",
|
|
87
|
+
"motion": "^12.0.0",
|
|
88
|
+
"tailwind-merge": "^3.3.1"
|
|
89
|
+
},
|
|
90
|
+
"peerDependenciesMeta": {
|
|
91
|
+
"clsx": {
|
|
92
|
+
"optional": false
|
|
93
|
+
},
|
|
94
|
+
"framer-motion": {
|
|
95
|
+
"optional": true
|
|
96
|
+
},
|
|
97
|
+
"motion": {
|
|
98
|
+
"optional": true
|
|
99
|
+
},
|
|
100
|
+
"tailwind-merge": {
|
|
101
|
+
"optional": false
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"devDependencies": {
|
|
105
|
+
"@babel/parser": "^7.28.5",
|
|
106
|
+
"@babel/traverse": "^7.28.5",
|
|
107
|
+
"@babel/types": "^7.28.5",
|
|
108
|
+
"@legendapp/state": "^3.0.0-beta.41",
|
|
109
|
+
"@preact/signals-core": "^1.12.1",
|
|
110
|
+
"@tailwindcss/vite": "^4.1.16",
|
|
111
|
+
"@types/babel__traverse": "^7.28.0",
|
|
112
|
+
"@types/node": "^24.7.0",
|
|
113
|
+
"clsx": "^2.1.1",
|
|
114
|
+
"motion": "^12.23.22",
|
|
115
|
+
"rimraf": "^6.0.1",
|
|
116
|
+
"tailwind-merge": "^3.3.1",
|
|
117
|
+
"tailwindcss": "^4.1.16",
|
|
118
|
+
"typescript": "^5.9.3",
|
|
119
|
+
"vite": "^7.1.9",
|
|
120
|
+
"vite-bundle-visualizer": "^1.2.1",
|
|
121
|
+
"vite-plugin-dts": "^4.5.4"
|
|
122
|
+
}
|
|
123
|
+
}
|