-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "today-webext",
"displayName": "Today",
"version": "0.5.5",
"private": true,
"packageManager": "[email protected]",
"description": "Plan your day, stay focused, make meaningful progress.",
"scripts": {
"dev": "npm run clear && cross-env NODE_ENV=development run-p dev:*",
"dev-firefox": "npm run clear && cross-env NODE_ENV=development EXTENSION=firefox run-p dev:*",
"dev:prepare": "esno scripts/prepare.ts",
"dev:background": "npm run build:background -- --mode development",
"dev:web": "vite",
"DISABLED:dev:js": "npm run build:js -- --mode development",
"build": "cross-env NODE_ENV=production run-s clear build:web build:prepare build:background",
"build:prepare": "esno scripts/prepare.ts",
"build:background": "vite build --config vite.config.background.ts",
"build:web": "vite build",
"DISABLED:build:js": "vite build --config vite.config.content.ts",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "rimraf extension.zip && jszip-cli add extension/* -o ./extension.zip",
"pack:crx": "crx pack extension -o ./extension.crx",
"pack:xpi": "cross-env WEB_EXT_ARTIFACTS_DIR=./ web-ext build --source-dir ./extension --filename extension.xpi --overwrite-dest",
"start:chromium": "web-ext run --source-dir ./extension --target=chromium",
"start:firefox": "web-ext run --source-dir ./extension --target=firefox-desktop",
"clear": "rimraf --glob extension/dist extension/manifest.json extension.*",
"lint": "eslint --cache .",
"test": "vitest",
"test:e2e": "playwright test",
"postinstall": "simple-git-hooks",
"tsc": "vue-tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@ffflorian/jszip-cli": "^3.4.1",
"@googleapis/calendar": "^9.3.1",
"@headlessui/vue": "^1.7.15",
"@iconify/json": "^2.2.91",
"@intlify/unplugin-vue-i18n": "^0.12.2",
"@julr/unocss-preset-forms": "^0.0.5",
"@mobiscroll/vue": "^5.28.0",
"@pinia/testing": "^0.1.2",
"@playwright/test": "^1.36.1",
"@testing-library/vue": "^7.0.0",
"@tiptap/pm": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"@tiptap/vue-3": "^2.0.4",
"@types/chrome": "^0.0.246",
"@types/fs-extra": "^11.0.1",
"@types/lodash-es": "^4.17.8",
"@types/luxon": "^3.3.4",
"@types/node": "^20.4.2",
"@types/sortablejs": "^1.15.1",
"@types/webextension-polyfill": "^0.10.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@unocss/eslint-config": "^0.53.5",
"@unocss/reset": "^0.53.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"@vueuse/components": "^10.2.1",
"@vueuse/core": "^10.2.1",
"@vueuse/integrations": "^10.3.0",
"@vueuse/sound": "^2.0.1",
"chokidar": "^3.5.3",
"class-variance-authority": "^0.7.0",
"cross-env": "^7.0.3",
"crx": "^5.0.1",
"eslint": "^8.45.0",
"esno": "^0.17.0",
"fs-extra": "^11.1.1",
"jsdom": "^22.1.0",
"kolorist": "^1.8.0",
"lint-staged": "^13.2.3",
"lodash-es": "^4.17.21",
"luxon": "^3.4.4",
"notiwind": "^2.0.2",
"npm-run-all": "^4.1.5",
"pinia": "^2.1.4",
"pinia-shared-state": "^0.4.5",
"radix-vue": "^1.2.5",
"rimraf": "^5.0.1",
"sass": "^1.69.3",
"simple-git-hooks": "^2.8.1",
"sortablejs": "^1.15.0",
"tailwind-merge": "^1.14.0",
"typescript": "^5.1.6",
"unocss": "^0.53.5",
"unplugin-auto-import": "^0.16.6",
"unplugin-icons": "^0.16.5",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.4.4",
"vitest": "^0.33.0",
"vue": "^3.3.4",
"vue-demi": "^0.14.5",
"vue-i18n": "^9.2.2",
"vue-router": "4",
"vue-tippy": "v6",
"vue-tsc": "^1.8.8",
"web-ext": "^7.6.2",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.10.0"
},
"simple-git-hooks": {
"pre-commit": ""
},
"lint-staged": {
"*": "eslint --fix"
}
}