-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.01 KB
/
package.json
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
{
"name": "handwritingfy",
"version": "1.1.0",
"author": "Tristan",
"license": "MIT",
"description": "A simple tool to make webpages seem handwritten!",
"keywords": [
"handwriting",
"handwritten",
"xkcd"
],
"type": "module",
"scripts": {
"build": "(rm -R ./dist/* || true) && yarn build-chrome-popup && yarn build-chrome-exec && yarn build-script && yarn copy",
"copy": "cp images/logo.png dist/logo.png && cp manifest.json dist/manifest.json",
"build-chrome-popup": "vite build --config vite.config.popup.js ",
"build-chrome-exec": "vite build --config vite.config.chrome.js",
"build-script": "vite build --config vite.config.script.js",
"dev": "vite",
"dev-chrome-exec": "vite build --config vite.config.chrome.js --watch",
"preview": "vite preview"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.3",
"flowbite": "^1.5.1",
"tailwindcss": "^3.1.7",
"vite": "^3.0.0"
},
"dependencies": {}
}