-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.41 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
{
"name": "omnivore-list-popup",
"description": "Browser extension to show a popup with a list of your Omnivore articles.",
"version": "1.9.1",
"author": "Sebastian Herrmann",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/herrherrmann/omnivore-list-popup.git"
},
"bugs": {
"url": "https://github.com/herrherrmann/omnivore-list-popup/issues"
},
"homepage": "https://github.com/herrherrmann/omnivore-list-popup#readme",
"scripts": {
"dev": "vite dev",
"lint": "eslint . && stylelint '**/*.css'",
"typecheck": "tsc --noEmit",
"format": "prettier . --write",
"build": "vite build",
"create-releases": "TARGET=firefox tsx ./scripts/create-releases.ts && TARGET=chrome tsx ./scripts/create-releases.ts",
"clean": "rimraf dist/ ./*.zip"
},
"devDependencies": {
"@eslint/js": "9.3.0",
"@types/chrome": "0.0.268",
"@types/firefox-webext-browser": "120.0.3",
"@types/webextension-polyfill": "0.10.7",
"eslint": "8.57.0",
"prettier": "3.2.5",
"rimraf": "5.0.7",
"stylelint": "16.5.0",
"stylelint-config-standard-scss": "13.1.0",
"tsx": "4.10.5",
"typescript": "5.4.5",
"typescript-eslint": "7.9.0",
"vite": "5.2.11",
"vite-plugin-web-extension": "4.1.3",
"webextension-polyfill": "0.12.0",
"zip-a-folder": "3.1.6"
},
"dependencies": {
"colorjs.io": "0.5.0"
}
}