-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.13 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
{
"name": "bunext-js",
"version": "0.11.6",
"repository": "shpaw415/bunext",
"bugs": "shpaw415@gmail.com",
"license": "MIT",
"author": {
"name": "Justin Halle"
},
"engines": {
"bun": "1.1.x - 1.2.x"
},
"os": [
"linux"
],
"type": "module",
"devDependencies": {
"@types/bun": "^1.2.15",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"@types/web": "^0.0.216",
"tailwindcss": "^4.1.4",
"@tailwindcss/postcss": "4.1.4",
"@tailwindcss/cli": "4.1.4",
"tailwind-bunext-plugin": "0.1.0",
"typed-css-modules": "0.9.1",
"cssjson": "2.1.3"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@base2/pretty-print-object": "1.0.2",
"@bunpmjs/json-webtoken": "0.1.0",
"@svgr/core": "8.1.0",
"@svgr/plugin-jsx": "8.1.0",
"@svgr/plugin-svgo": "8.1.0",
"bun-types": "latest",
"is-plain-object": "5.0.0",
"json-beautify": "1.1.1",
"next-json": "0.3.2",
"react-is": "18.2.0",
"sharp": "^0.34.2"
},
"bin": {
"bunext": "bin/index.ts"
},
"scripts": {
"test": "bun run build && bun test ./bin/main.test.ts",
"clear": "rm -rf .bunext/build/* .bunext/build/.bunext config/bunext.* config/session.*",
"dev": "bun ./bin/index.ts dev",
"start": "bun ./bin/index.ts production",
"build": "bun ./bin/index.ts build",
"db:create": "bun ./bin/index.ts database:create"
},
"keywords": [
"react",
"framework",
"full-stack",
"front-end",
"backend",
"web",
"server",
"bun"
],
"exports": {
"./*": "./*",
"./head": "./features/head.tsx",
"./database": "./database/index.ts",
"./database/types": "./database/database_types.ts",
"./session": "./features/session/session.ts",
"./utils": "./features/utils/index.ts",
"./request": "./internal/server/bunextRequest.ts",
"./router/*": "./features/router/*",
"./client/*": "./features/client/*",
"./image": "./features/image/index.tsx",
"./link": "./features/router/components.tsx",
"./preload": "./internal/router/preload.ts"
}
}