-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.35 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
{
"name": "@8monkey/no-orm",
"version": "0.1.0-rc0",
"description": "A tiny, composable ORM core for TS libraries - no heavy abstractions, just the primitives.",
"keywords": [
"database",
"schema",
"migration",
"orm",
"library",
"postgresql",
"mysql",
"sqlite",
"greptime"
],
"homepage": "https://hebo.ai",
"bugs": {
"url": "https://github.com/8monkey-ai/no-orm/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/8monkey-ai/no-orm.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "git clean -fdx -e '.env*' .",
"format": "oxfmt .",
"format:staged": "oxfmt --no-error-on-unmatched-pattern",
"lint": "oxlint",
"lint:staged": "oxlint --fix",
"typecheck": "oxlint --type-check",
"test": "bun test",
"check": "bun lint && bun typecheck",
"fix": "bun lint:staged && bun format:staged"
},
"dependencies": {},
"devDependencies": {
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0",
"typescript": "^6.0.2"
},
"peerDependencies": {},
"peerDependenciesMeta": {}
}