-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
{
"name": "tab-tosser",
"version": "3.3.1",
"description": "Automatically close tabs that have been ignored for too long. Free yourself of digital clutter.",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "qunit",
"build:css": "npx tailwindcss --minify -i ./tailwind.css -o ./src/lib/styles.css --config tailwind.config.cjs",
"build:cp": "rm -rf dist/* && cp LICENSE.txt dist/ && cp src/{manifest.json,icon.svg} dist/ && mkdir dist/lib && cp src/lib/{background.html,first-run.html,support.html,options.html,styles.css} dist/lib/ && mkdir dist/vendor && cp src/vendor/* dist/vendor",
"build:ts": "npx tsc",
"build": "npm run build:css && npm run build:cp && npm run build:ts",
"release": "npm run build && web-ext build --overwrite-dest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremiahlee/tab-tosser.git"
},
"author": "Jeremiah Lee",
"license": "EUPL-1.1",
"private": true,
"bugs": {
"url": "https://github.com/jeremiahlee/tab-tosser/issues"
},
"homepage": "https://www.jeremiahlee.com/tab-tosser/",
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@types/firefox-webext-browser": "^109.0.0",
"@types/node": "^18.11.18",
"autoprefixer": "^10.3.7",
"jsdom": "^21.1.0",
"qunit": "^2.19.4",
"sinon": "^15.0.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"webextensions-api-fake": "^1.3.0"
},
"engines": {
"node": ">=18.13.0"
},
"type": "module",
"webExt": {
"sourceDir": "dist/",
"artifactsDir": "dist-releases/"
}
}