-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 KB
/
package.json
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
{
"name": "clark-orm",
"version": "4.0.6",
"private": false,
"description": "ClarkORM",
"main": "dist/app.js",
"type": "module",
"files": [
"dist/"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsup-node src/app.ts --clean --format esm --dts",
"prepublishOnly": "npm run build"
},
"keywords": [
"lucid",
"adonisjs",
"orm",
"typescript",
"mysql",
"postgresql",
"mariadb",
"sqlite",
"sql-server",
"oracle",
"knex"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gideaoms/clark-orm.git"
},
"author": "Gideão Silva <gideaoms@gmail.com>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-standard": "5.0.0",
"prettier": "3.0.3",
"tsup": "^8.2.3",
"typescript": "5.5.4"
},
"dependencies": {
"@adonisjs/application": "^8.3.1",
"@adonisjs/events": "9.0.2",
"@adonisjs/logger": "6.0.3",
"@adonisjs/lucid": "^21.1.1"
},
"packageManager": "pnpm@9.12.3"
}