-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.8 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "themifier",
"description": "Adaptive Styling Engine for Your Browser. Customize the look and feel of websites with ease.",
"private": true,
"version": "0.5.0",
"type": "module",
"author": "Stefan Popov <stefan@desource-labs.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DeSource-Labs/themifier.git"
},
"bugs": {
"url": "https://github.com/DeSource-Labs/themifier/issues"
},
"homepage": "https://github.com/DeSource-Labs/themifier/tree/main#readme",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "vue-tsc --noEmit",
"postinstall": "wxt prepare",
"lint": "eslint . --ext .ts,.tsx,.vue",
"lint:fix": "eslint . --ext .ts,.tsx,.vue --fix",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@vitejs/plugin-vue": "^6.0.3",
"@vueuse/core": "^14.1.0",
"pinia": "^3.0.4",
"vue": "^3.5.26",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@types/chrome": "^0.1.32",
"@wxt-dev/module-vue": "^1.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.6.2",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"sass": "^1.97.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.50.0",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.1.8",
"wxt": "^0.20.13"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"pnpm lint:fix",
"pnpm format"
]
}
}