-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 947 Bytes
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
{
"name": "oracle-data-provider",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --compile --outfile server",
"test": "bun test",
"test:watch": "bun test --watch",
"test:unit": "bun test test/generate.test.ts",
"test:api": "bun test test/api.test.ts",
"format": "prettier --check --cache \"src/**/*.ts\" \"test/**/*.ts\"",
"format:fix": "prettier --write --cache --cache-strategy metadata \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
"check": "bun run format && bun run lint",
"fix": "bun run format:fix && bun run lint:fix"
},
"dependencies": {
"hono": "^4.8.10"
},
"devDependencies": {
"@hono/eslint-config": "^2.0.2",
"@types/bun": "latest",
"eslint": "^9.32.0",
"prettier": "^3.6.2"
}
}