-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (29 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (29 loc) · 880 Bytes
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
{
"name": "bionic-reader",
"version": "1.0.0",
"description": "BoldFlow – Bionic Reading Chrome Extension",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:content && npm run build:extension",
"build:content": "vite build --config vite.content.config.ts",
"build:extension": "vite build --config vite.extension.config.ts && node scripts/copy-manifest.js",
"dev": "vite build --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/Zenoguy/bionic-reader.git"
},
"bugs": {
"url": "https://github.com/Zenoguy/bionic-reader/issues"
},
"homepage": "https://github.com/Zenoguy/bionic-reader#readme",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.1.32",
"@types/node": "^25.0.3",
"fs-extra": "^11.3.3",
"typescript": "^5.9.3",
"vite": "^7.3.0"
}
}