-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.43 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.43 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
95
96
97
98
{
"name": "arkormx",
"version": "1.3.6",
"description": "Modern TypeScript-first ORM for Node.js.",
"keywords": [
"orm",
"database",
"typescript",
"nodejs",
"sql",
"query builder",
"migration",
"seeding",
"model",
"repository"
],
"homepage": "https://arkormx.toneflix.net",
"bugs": {
"url": "https://github.com/arkstack-hq/arkormx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arkstack-hq/arkormx.git"
},
"license": "MIT",
"author": "3m1n1nce <3m1n1nce@toneflix.net>",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"stubs",
"bin",
"README.md",
"LICENSE"
],
"bin": {
"arkorm": "./dist/cli.mjs"
},
"scripts": {
"cmd": "tsx src/cli/index.ts",
"lint": "eslint",
"test": "vitest run --project=base",
"test:all": "vitest run",
"test:postgres": "vitest run --project=postgres",
"test:watch": "vitest --project=!postgres",
"test:coverage": "vitest run --coverage --config vitest.config.ci.ts",
"prisma:generate": "prisma generate",
"db:migrate:test": "prisma migrate deploy",
"build": "tsdown",
"barrel": "barrelize",
"prepublishOnly": "pnpm barrel && pnpm build && pnpm test:coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^7.5.1",
"@prisma/adapter-pg": "^7.6.0",
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"@vitest/coverage-v8": "4.1.2",
"barrelize": "^1.7.3",
"eslint": "^10.0.0",
"pg": "^8.19.0",
"prisma": "^7.6.0",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.56.0",
"vitepress": "2.0.0-alpha.16",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@h3ravel/collect.js": "^5.3.6",
"@h3ravel/musket": "^0.10.1",
"@h3ravel/shared": "^0.27.13",
"@h3ravel/support": "^0.15.11",
"@rexxars/jiti": "^2.6.1",
"dotenv": "^17.3.1"
},
"peerDependencies": {
"@prisma/client": "^7.6.0"
}
}