@bejibun/core 0.1.25 → 0.1.26
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 +30 -40
package/package.json
CHANGED
|
@@ -1,28 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bejibun/core",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"
|
|
5
|
-
"keywords": [
|
|
6
|
-
"bun",
|
|
7
|
-
"bun framework",
|
|
8
|
-
"core",
|
|
9
|
-
"bejibun",
|
|
10
|
-
"typescript"
|
|
11
|
-
],
|
|
12
|
-
"homepage": "https://github.com/crenata/bejibun-core#readme",
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/crenata/bejibun-core/issues"
|
|
15
|
-
},
|
|
3
|
+
"version": "0.1.26",
|
|
4
|
+
"author": "Havea Crenata <havea.crenata@gmail.com>",
|
|
16
5
|
"repository": {
|
|
17
6
|
"type": "git",
|
|
18
7
|
"url": "git+https://github.com/crenata/bejibun-core.git"
|
|
19
8
|
},
|
|
20
|
-
"license": "MIT",
|
|
21
|
-
"author": "Havea Crenata <havea.crenata@gmail.com>",
|
|
22
|
-
"type": "module",
|
|
23
9
|
"main": "./dist/index.js",
|
|
24
10
|
"module": "./dist/index.js",
|
|
25
|
-
"
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@vinejs/vine": "^3.0.1",
|
|
13
|
+
"chalk": "^5.6.2",
|
|
14
|
+
"knex": "^3.1.0",
|
|
15
|
+
"luxon": "^3.7.2",
|
|
16
|
+
"objection": "^3.1.5",
|
|
17
|
+
"pg": "^8.16.3"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@types/bun": "latest",
|
|
21
|
+
"@types/luxon": "^3.7.1",
|
|
22
|
+
"tsc-alias": "^1.8.16"
|
|
23
|
+
},
|
|
26
24
|
"exports": {
|
|
27
25
|
".": {
|
|
28
26
|
"import": "./dist/index.js",
|
|
@@ -53,35 +51,27 @@
|
|
|
53
51
|
"types": "./dist/types/*.d.ts"
|
|
54
52
|
}
|
|
55
53
|
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/crenata/bejibun-core/issues"
|
|
56
|
+
},
|
|
57
|
+
"description": "Core of Bejibun Framework",
|
|
56
58
|
"files": [
|
|
57
59
|
"dist"
|
|
58
60
|
],
|
|
61
|
+
"homepage": "https://github.com/crenata/bejibun-core#readme",
|
|
62
|
+
"keywords": [
|
|
63
|
+
"bun",
|
|
64
|
+
"bun framework",
|
|
65
|
+
"core",
|
|
66
|
+
"bejibun",
|
|
67
|
+
"typescript"
|
|
68
|
+
],
|
|
69
|
+
"license": "MIT",
|
|
59
70
|
"scripts": {
|
|
60
71
|
"clean": "rm -rf dist",
|
|
61
72
|
"build": "bun run clean && bunx tsc -p tsconfig.json && cp -rf src/types dist/types && bunx tsc-alias -p tsconfig.json",
|
|
62
73
|
"deploy": "bun run build && npm publish --access public"
|
|
63
74
|
},
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
"chalk": "^5.6.2",
|
|
67
|
-
"knex": "^3.1.0",
|
|
68
|
-
"luxon": "^3.7.2",
|
|
69
|
-
"objection": "^3.1.5",
|
|
70
|
-
"pg": "^8.16.3"
|
|
71
|
-
},
|
|
72
|
-
"devDependencies": {
|
|
73
|
-
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
|
|
74
|
-
"@types/bun": "latest",
|
|
75
|
-
"@types/luxon": "^3.7.1",
|
|
76
|
-
"esbuild-plugin-alias": "^0.2.1",
|
|
77
|
-
"esbuild-plugin-tsconfig-paths": "^1.0.1",
|
|
78
|
-
"esbuild-ts-paths": "^1.1.3",
|
|
79
|
-
"tsc-alias": "^1.8.16",
|
|
80
|
-
"tsconfig-paths": "^4.2.0",
|
|
81
|
-
"tsup": "^8.5.0",
|
|
82
|
-
"typescript": "^5.9.3"
|
|
83
|
-
},
|
|
84
|
-
"peerDependencies": {
|
|
85
|
-
"typescript": "^5"
|
|
86
|
-
}
|
|
75
|
+
"type": "module",
|
|
76
|
+
"types": "./dist/index.d.ts"
|
|
87
77
|
}
|