-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.41 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
{
"name": "ework-web",
"version": "0.10.48",
"type": "module",
"description": "ework-web — standalone multi-project issue tracker. Local SQLite-backed, no external API dependency. Bun + TypeScript + SSR HTML.",
"license": "MIT",
"author": "contributors",
"repository": {
"type": "git",
"url": "https://github.com/ranxianglei/ework-web.git"
},
"homepage": "https://github.com/ranxianglei/ework-web",
"bugs": {
"url": "https://github.com/ranxianglei/ework-web/issues"
},
"keywords": [
"issue-tracker",
"gitea-compatible",
"opencode",
"sqlite",
"ssr",
"bun",
"self-hosted"
],
"bin": {
"ework-web": "./bin/ework-web.js"
},
"files": [
"src",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.1.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"check": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:mysql": "bash scripts/test-mysql.sh"
},
"dependencies": {
"@types/dompurify": "^3.2.0",
"dompurify": "^3.4.11",
"highlight.js": "^11.10.0",
"jsdom": "^29.1.1",
"marked": "^15.0.0",
"marked-highlight": "^2.2.0",
"mysql2": "^3.23.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jsdom": "^28.0.3",
"typescript": "^5.6.0"
}
}