-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2 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
64
65
{
"name": "textagent",
"version": "1.0.0",
"description": "Write with AI Agents — Markdown Editor & Viewer",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test": "playwright test",
"test:smoke": "playwright test tests/smoke",
"test:feature": "playwright test tests/feature",
"test:integration": "playwright test tests/integration",
"test:dev": "playwright test tests/dev",
"test:regression": "playwright test tests/regression",
"test:performance": "playwright test tests/performance",
"test:quality": "playwright test tests/quality",
"test:firestore": "node tests/firestore/firestore-rules.test.js",
"test:all": "playwright test tests/smoke tests/feature tests/integration tests/dev tests/performance tests/quality tests/regression",
"security": "bash scripts/security-check.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/Textagent/textagent.github.io.git"
},
"license": "MIT",
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"bootstrap": "5.3.8",
"bootstrap-icons": "1.13.1",
"dompurify": "3.0.9",
"emoji-toolkit": "9.0.1",
"file-saver": "2.0.5",
"github-markdown-css": "5.9.0",
"highlight.js": "11.9.0",
"html2canvas": "1.4.1",
"html2pdf.js": "0.10.1",
"jspdf": "2.5.1",
"kokoro-js": "^1.2.1",
"mammoth": "1.8.0",
"marked": "9.1.6",
"mathjs": "12.4.0",
"mermaid": "11.6.0",
"onnxruntime-web": "^1.24.3",
"pako": "2.1.0",
"turndown": "7.2.0",
"xlsx": "0.18.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"esbuild": "^0.27.4",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"just-bash": "^2.0.0",
"prettier": "^3.8.1",
"vite": "7.3.1"
}
}