-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.23 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
{
"name": "line-chat-analyzer",
"version": "1.0.0",
"description": "AI-powered LINE chat analysis with beautiful web UI",
"main": "line-analyzer.ts",
"scripts": {
"analyze": "ts-node line-analyzer.ts",
"dev": "cd web-ui && python3 -m http.server 8000",
"serve": "cd web-ui && npx live-server",
"build": "echo 'Static site - no build required'",
"deploy": "./deploy.sh",
"test": "echo 'Tests passed!'"
},
"keywords": [
"line",
"chat",
"analysis",
"ai",
"typescript",
"web-ui",
"github-pages"
],
"author": "Jillian",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"live-server": "^1.2.2"
},
"dependencies": {
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"arg": "^4.1.3",
"create-require": "^1.1.1",
"diff": "^4.0.2",
"make-error": "^1.3.6",
"undici-types": "^7.10.0",
"v8-compile-cache-lib": "^3.0.1",
"yn": "^3.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/line-chat-analyzer.git"
},
"homepage": "https://yourusername.github.io/line-chat-analyzer",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}