-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
{
"name": "@harperfast/schema-codegen",
"version": "1.0.9",
"description": "Generate useful types from your Harper database schemas",
"keywords": [],
"homepage": "https://github.com/harperfast",
"bugs": {
"url": "https://github.com/harperfast/schema-codegen/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Harper",
"email": "support@harperdb.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarperFast/schema-codegen.git"
},
"files": [
"extensionModule.js",
"config.yaml",
"utils/",
"!utils/**/*.test.js"
],
"type": "module",
"scripts": {
"commitlint": "commitlint --edit",
"format:check": "oxfmt --check",
"format:fix": "oxfmt --write",
"format:staged": "oxfmt --check --list-different",
"lint:check": "oxlint .",
"lint:fix": "oxlint . --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^24.10.11",
"@types/react": "^19.2.10",
"@vitest/coverage-v8": "^4.0.18",
"conventional-changelog-conventionalcommits": "^9.1.0",
"harperdb": "^4.7.20",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"semantic-release": "^25.0.2",
"vitest": "^4.0.18"
}
}