-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
{
"name": "paperfit-cli",
"version": "1.0.6",
"description": "Visual Typesetting Optimization Agent System for LaTeX papers",
"main": "bin/paperfit.js",
"bin": {
"paperfit": "bin/paperfit.js",
"paperfit-install": "scripts/install-host-global.js"
},
"scripts": {
"verify": "npm run validate:config && npm run check:node && npm run check:py-warnings",
"validate:config": ".venv/bin/python scripts/config_validator.py",
"check:node": "node --check bin/paperfit.js",
"check:py-warnings": ".venv/bin/python -W error scripts/check_python_warnings.py",
"postinstall": "node scripts/postinstall.js",
"upgrade": "bash install.sh --update --local",
"upgrade:registry": "bash install.sh --update"
},
"files": [
"bin/",
"scripts/",
".agents/",
"agents/",
"skills/",
"plugins/",
"config/",
".claude/",
".claude-plugin/",
"CLAUDE.md",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"requirements.txt",
"install.sh"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpenRaiser/PaperFit.git"
},
"keywords": [
"latex",
"typesetting",
"visual-optimization",
"claude-code",
"agent-system"
],
"author": "PaperFit Team",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"ora": "^7.0.1"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}