@h3ravel/arquebus 0.1.4

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 ADDED
@@ -0,0 +1,151 @@
1
+ {
2
+ "name": "@h3ravel/arquebus",
3
+ "version": "0.1.4",
4
+ "description": "Arquebus ORM is a Beautiful, expressive ORM inspired by Laravel's Eloquent, designed for TypeScript applications and for the H3ravel Framework.",
5
+ "homepage": "https://h3ravel.net/arquebus",
6
+ "bin": {
7
+ "arquebus": "./bin/cli.js"
8
+ },
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "main": "./dist/index.cjs",
13
+ "module": "./dist/index.js",
14
+ "type": "module",
15
+ "types": "./dist/index.d.ts",
16
+ "files": [
17
+ "dist",
18
+ "bin"
19
+ ],
20
+ "exports": {
21
+ ".": {
22
+ "worker": {
23
+ "import": {
24
+ "types": "./dist/index.d.ts",
25
+ "default": "./dist/index.js"
26
+ },
27
+ "require": {
28
+ "types": "./dist/index.d.ts",
29
+ "default": "./dist/index.cjs"
30
+ }
31
+ },
32
+ "node": {
33
+ "import": {
34
+ "types": "./dist/index.d.ts",
35
+ "default": "./dist/index.js"
36
+ },
37
+ "require": {
38
+ "types": "./dist/index.d.ts",
39
+ "default": "./dist/index.cjs"
40
+ }
41
+ },
42
+ "browser": {
43
+ "import": {
44
+ "types": "./dist/browser/index.d.ts",
45
+ "default": "./dist/browser/index.js"
46
+ },
47
+ "require": {
48
+ "types": "./dist/browser/index.d.ts",
49
+ "default": "./dist/browser/index.cjs"
50
+ }
51
+ },
52
+ "default": {
53
+ "import": {
54
+ "types": "./dist/index.d.ts",
55
+ "default": "./dist/index.js"
56
+ },
57
+ "require": {
58
+ "types": "./dist/index.d.ts",
59
+ "default": "./dist/index.cjs"
60
+ }
61
+ }
62
+ },
63
+ "./browser": {
64
+ "import": {
65
+ "types": "./dist/browser/index.d.ts",
66
+ "default": "./dist/browser/index.js"
67
+ },
68
+ "require": {
69
+ "types": "./dist/browser/index.d.ts",
70
+ "default": "./dist/browser/index.cjs"
71
+ }
72
+ },
73
+ "./package.json": "./package.json"
74
+ },
75
+ "repository": {
76
+ "type": "git",
77
+ "url": "https://github.com/h3ravel/arquebus.git"
78
+ },
79
+ "engines": {
80
+ "node": ">=14",
81
+ "pnpm": ">=4"
82
+ },
83
+ "husky": {
84
+ "hooks": {
85
+ "pre-commit": "lint-staged"
86
+ }
87
+ },
88
+ "lint-staged": {
89
+ "*.{js,json}": [
90
+ "prettier --write",
91
+ "git add"
92
+ ]
93
+ },
94
+ "dependencies": {
95
+ "collect.js": "^4.36.1",
96
+ "colorette": "^2.0.20",
97
+ "commander": "^11.1.0",
98
+ "dayjs": "^1.11.13",
99
+ "dotenv": "^17.2.1",
100
+ "escalade": "^3.2.0",
101
+ "knex": "^3.1.0",
102
+ "pluralize": "^8.0.0",
103
+ "radashi": "^12.6.2",
104
+ "resolve-from": "^5.0.0"
105
+ },
106
+ "devDependencies": {
107
+ "@eslint/js": "^9.33.0",
108
+ "@types/node": "^24.3.0",
109
+ "@types/pluralize": "^0.0.33",
110
+ "@typescript-eslint/eslint-plugin": "^8.40.0",
111
+ "@typescript-eslint/parser": "^8.40.0",
112
+ "cross-env": "^7.0.3",
113
+ "eslint": "^9.33.0",
114
+ "husky": "^8.0.3",
115
+ "jsdom": "^26.1.0",
116
+ "lint-staged": "^13.3.0",
117
+ "mysql2": "3.12.0",
118
+ "pg": "8.8.0",
119
+ "prettier": "2.6.2",
120
+ "sqlite3": "5.1.7",
121
+ "tedious": "15.1.0",
122
+ "ts-node": "^10.9.2",
123
+ "tsup": "^8.5.0",
124
+ "typescript": "^5.9.2",
125
+ "typescript-eslint": "^8.40.0",
126
+ "vite-tsconfig-paths": "^5.1.4",
127
+ "vitest": "^3.2.4"
128
+ },
129
+ "keywords": [
130
+ "arquebus",
131
+ "ORM",
132
+ "mysql",
133
+ "mariadb",
134
+ "sqlite",
135
+ "postgresql",
136
+ "postgres",
137
+ "pg",
138
+ "mssql",
139
+ "active record"
140
+ ],
141
+ "readmeFilename": "README.md",
142
+ "license": "MIT",
143
+ "scripts": {
144
+ "build": "tsup",
145
+ "lint": "eslint . --ext .ts",
146
+ "test:mysql": "cross-env DB=mysql vitest --project node",
147
+ "test:postgres": "cross-env DB=postgres vitest --project node",
148
+ "test:sqlite": "cross-env DB=sqlite vitest --project node",
149
+ "test:browser": "vitest --project browser"
150
+ }
151
+ }