@absolutejs/absolute 0.1.23 → 0.1.24
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/package.json +4 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@absolutejs/absolute",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.24",
|
|
4
4
|
"description": "A fullstack meta-framework for building web applications with TypeScript",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,21 +11,19 @@
|
|
|
11
11
|
"license": "CC BY-NC 4.0",
|
|
12
12
|
"author": "Alex Kahn",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "rm -rf dist && bun build src/index.ts --outdir dist --minify --splitting --target=bun --external react --external react-dom && tsc --emitDeclarationOnly --project tsconfig.json",
|
|
14
|
+
"build": "rm -rf dist && bun build src/index.ts --outdir dist --minify --splitting --target=bun --external react --external react-dom --external elysia && tsc --emitDeclarationOnly --project tsconfig.json",
|
|
15
15
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
16
16
|
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,json}\"",
|
|
17
17
|
"dev": "bun run --watch example/server.ts",
|
|
18
18
|
"release": "bun run format && bun run build && bun publish"
|
|
19
19
|
},
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"@elysiajs/static": "1.0.2",
|
|
22
|
-
"elysia": "1.0.13"
|
|
23
|
-
},
|
|
24
20
|
"peerDependencies": {
|
|
21
|
+
"elysia": "1.0.13",
|
|
25
22
|
"react": "19.1.0",
|
|
26
23
|
"react-dom": "19.1.0"
|
|
27
24
|
},
|
|
28
25
|
"devDependencies": {
|
|
26
|
+
"@elysiajs/static": "1.0.2",
|
|
29
27
|
"@types/bun": "1.1.1",
|
|
30
28
|
"@types/react": "19.1.0",
|
|
31
29
|
"@types/react-dom": "19.1.2",
|