-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.53 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
{
"name": "js-record",
"version": "0.1.1",
"description": "A TypeScript ORM inspired by ActiveRecord for PostgreSQL, SQLite, and (TODO: MySQL) running on Bun",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"js-record": "./dist/bin/js-record.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/bin/js-record.js",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"orm",
"activerecord",
"typescript",
"postgresql",
"postgres",
"sqlite",
"bun",
"database",
"sql",
"query-builder"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benwyrosdick/js-record.git"
},
"bugs": {
"url": "https://github.com/benwyrosdick/js-record/issues"
},
"homepage": "https://github.com/benwyrosdick/js-record#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"publishConfig": {
"access": "public"
}
}