-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 1.84 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
33
34
35
36
37
38
{
"name": "mtab",
"author": "Max Hu",
"description": "a simple configurable new tab extension",
"keywords": [],
"scripts": {
"d": "bun dev",
"dev": "bun clean && bun dev-chrome",
"dev-chrome": "mkdir -p dist && parcel src/**/*.html & ./scripts/linux/create_manifest_chrome.sh && ./scripts/linux/copy_assets.sh",
"dev-firefox": "mkdir -p dist && parcel src/**/*.html & ./scripts/linux/create_manifest_firefox.sh && ./scripts/linux/copy_assets.sh",
"build-chrome": "mkdir -p dist && parcel build src/**/*.html --no-source-maps --no-scope-hoist & ./scripts/linux/create_manifest_chrome.sh && ./scripts/linux/copy_assets.sh",
"build-firefox": "mkdir -p dist && parcel build src/**/*.html --no-source-maps --no-scope-hoist & ./scripts/linux/create_manifest_firefox.sh && ./scripts/linux/copy_assets.sh",
"build-firefox-windows": "mkdir -p dist && parcel build src/**/*.html --no-source-maps --no-scope-hoist && ./scripts/win/create_manifest_firefox.bat && ./scripts/win/copy_assets.bat",
"package-chrome": "bun clean && bun build-chrome && ./scripts/linux/package_chrome.sh",
"package-firefox": "bun clean && bun build-firefox && ./scripts/linux/package_firefox.sh",
"zip-source": "./scripts/linux/zip_source.sh",
"clean": "rm -rf .parcel-cache && rm -rf dist",
"prettier": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,html}\"",
"prepare": "husky"
},
"dependencies": {
"mathjs": "^13.2.3",
"parcel": "^2.13.3",
"sortablejs": "^1.15.6",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/chrome": "^0.0.263",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17"
}
}