-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.64 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.64 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
{
"name": "forge-sql-orm",
"version": "2.1.17",
"description": "Drizzle ORM integration for Atlassian @forge/sql. Provides a custom driver, schema migration, two levels of caching (local and global via @forge/kvs), optimistic locking, and query analysis.",
"main": "dist/index.js",
"homepage": "https://github.com/vzakharchenko/forge-sql-orm#readme",
"bugs": {
"url": "https://github.com/vzakharchenko/forge-sql-orm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vzakharchenko/forge-sql-orm.git"
},
"keywords": [
"atlassian-forge",
"atlassian-forge-drizzle",
"forge-sql",
"forge",
"drizzle",
"drizzle-orm",
"drizzle-driver",
"drizzle-custom-driver",
"orm",
"rovo",
"database"
],
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/luxon": "^3.7.1",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.7",
"knip": "^5.76.1",
"patch-package": "^8.0.1",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"vitest": "^4.0.16"
},
"license": "MIT",
"author": "Vasyl Zakharchenko",
"scripts": {
"test": "vitest --run --config vitest.config.mjs",
"test:coverage": "vitest --run --config vitest.config.mjs --coverage",
"test:watch": "vitest --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write src examples __tests__",
"format:check": "prettier --write src examples __tests__ --check",
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:types",
"build:types": "tsc",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"generate:models": "ts-node scripts/generate-models.ts",
"prepare": "husky",
"knip": "knip"
},
"files": [
"dist",
"tsconfig.json",
"src",
"README.md"
],
"peerDependencies": {
"@forge/sql": "^3.0.14",
"drizzle-orm": "^0.45.1"
},
"optionalDependencies": {
"@forge/kvs": "^1.2.0"
},
"dependencies": {
"@forge/events": "^2.0.14",
"luxon": "^3.7.2",
"node-sql-parser": "^5.3.13"
},
"lint-staged": {
"*.{ts,tsx,css,scss,md}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "cd .husky && ./pre-commit"
}
}
}