-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.27 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.27 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
91
92
93
94
{
"name": "gaman",
"description": "A Lean Framework for Enterprise Scalability.",
"version": "2.1.4",
"author": {
"name": "Angga7Togk",
"url": "https://github.com/angga7togk"
},
"workspaces": [
"packages/*"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"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"
},
"./responder": {
"types": "./dist/responder.d.ts",
"import": "./dist/responder.mjs",
"require": "./dist/responder.js"
},
"./compose": {
"types": "./dist/compose/index.d.ts",
"import": "./dist/compose/index.mjs",
"require": "./dist/compose/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.mjs",
"require": "./dist/utils/index.js"
},
"./formdata": {
"types": "./dist/context/formdata/index.d.ts",
"import": "./dist/context/formdata/index.mjs",
"require": "./dist/context/formdata/index.js"
},
"./header": {
"types": "./dist/context/header/index.d.ts",
"import": "./dist/context/header/index.mjs",
"require": "./dist/context/header/index.js"
},
"./enums": {
"types": "./dist/enums/index.d.ts",
"import": "./dist/enums/index.mjs",
"require": "./dist/enums/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/GamanJS/gaman.git"
},
"bugs": "https://github.com/GamanJS/gaman/issues",
"license": "MIT",
"homepage": "https://github.com/GamanJS/gaman",
"keywords": [
"gamanjs",
"gaman",
"bun",
"http",
"web",
"framework"
],
"scripts": {
"release": "bun build.ts && bun test && npm publish --access public",
"kame": "bun packages/kame/src/index.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"edge.js": "^6.5.0",
"esbuild-fix-imports-plugin": "^1.0.23",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^8.0.3"
},
"peerDependencies": {
"@gaman/michi": "^0.1.3"
}
}