-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.11 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
66
67
68
69
70
{
"name": "Loominary",
"version": "26.03.0",
"private": true,
"homepage": ".",
"description": "A handy tool for exporting chat conversations.",
"author": {
"name": "Laumss"
},
"dependencies": {
"@xenova/transformers": "^2.17.2",
"fflate": "^0.8.2",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.3",
"jszip": "^3.10.1",
"katex": "^0.16.23",
"lucide-react": "^0.511.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^8.0.7",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^3.0.1",
"remark-math": "^6.0.0"
},
"scripts": {
"start": "cross-env HOST=0.0.0.0 PORT=3789 PUBLIC_URL=/lyra-exporter react-scripts start",
"start:local": "cross-env PORT=3789 react-scripts start",
"start:network": "cross-env HOST=0.0.0.0 PORT=3789 react-scripts start",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 react-scripts build",
"postbuild": "node -e \"const fs=require('fs');fs.mkdirSync('build/welcome',{recursive:true});let h=fs.readFileSync('build/index.html','utf8');h=h.replace(/\\.\\//g,'../');fs.writeFileSync('build/welcome/index.html',h)\"",
"build:extension": "cross-env NODE_OPTIONS=--max-old-space-size=4096 react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"deploy:pages": "gh-pages -d build -r https://github.com/Laumss/react.git",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.7",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"gh-pages": "^6.3.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"wait-on": "^8.0.3"
}
}