-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 797 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 797 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
{
"name": "kindle-to-md-converter",
"source": "src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel src/index.html",
"dev": "parcel src/index.html",
"build": "PARCEL_WORKERS=0 NODE_OPTIONS=--max-old-space-size=1024 parcel build src/index.html",
"clean": "rm -rf dist .parcel-cache"
},
"targets": {
"default": {
"optimize": false
}
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"parcel": "^2.16.1",
"postcss": "^8.5.6",
"postcss-discard-comments": "^7.0.5",
"prettier": "^3.7.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"svgo": "^4.0.0",
"tailwindcss": "^4.1.17"
},
"dependencies": {
"caniuse-lite": "^1.0.30001757",
"file-saver": "^2.0.2"
}
}