-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.34 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
{
"name": "txt-novel-reader",
"version": "1.0.0",
"description": "现代化的TXT小说阅读器 - 支持智能章节解析、阅读进度保存、目录自动定位",
"main": "index.html",
"homepage": "https://github.com/your-username/txt-novel-reader",
"repository": {
"type": "git",
"url": "https://github.com/your-username/txt-novel-reader.git"
},
"bugs": {
"url": "https://github.com/your-username/txt-novel-reader/issues"
},
"scripts": {
"start": "http-server . -p 8080 -o",
"serve": "http-server . -p 8080 -o",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch",
"build": "echo \"Static site - no build needed\"",
"lint": "eslint js/*.js",
"dev": "http-server . -p 3000 -o"
},
"keywords": [
"txt",
"novel",
"reader",
"ebook",
"web-app",
"javascript",
"html5",
"css3",
"responsive",
"reading",
"chapter-parser",
"progress-save",
"dark-theme"
],
"author": {
"name": "Claude Code AI Assistant",
"email": "noreply@anthropic.com"
},
"license": "MIT",
"devDependencies": {
"puppeteer": "^21.0.0",
"jest": "^29.0.0",
"jest-puppeteer": "^9.0.0",
"http-server": "^14.0.0",
"eslint": "^8.0.0"
},
"jest": {
"preset": "jest-puppeteer",
"testMatch": [
"**/tests/**/*.test.js"
]
}
}