-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.53 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
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
110
111
112
113
114
115
116
117
118
{
"name": "vind",
"displayName": "Vind: Keyboard Shortcuts for Every Website",
"version": "3.8.1",
"description": "Create keyboard shortcuts for any web element. Boost productivity, eliminate mouse clicks, navigate faster on all sites.",
"author": "dev@joacoesteban.com",
"scripts": {
"dev": "plasmo dev",
"dev:ff": "plasmo dev --target=firefox-mv2",
"prebuild": "pnpm run typecheck:svelte",
"build": "plasmo build",
"test": "bun x playwright test",
"prebuild:firefox": "pnpm run typecheck:svelte",
"build:firefox": "plasmo build --target=firefox-mv2",
"prebuild:safari": "pnpm run typecheck:svelte",
"build:safari": "plasmo build --target=safari-mv3",
"package": "plasmo package",
"package:firefox": "plasmo package --target=firefox-mv2",
"package:safari": "plasmo package --target=safari-mv3",
"rebuild-sharp": "npm rebuild --verbose sharp",
"bundle": "pnpm run build && pnpm run package",
"bundle:firefox": "pnpm run build:firefox && pnpm run package:firefox",
"bundle:all": "pnpm run bundle && pnpm run bundle:firefox",
"typecheck:svelte": "svelte-check --tsconfig tsconfig.json"
},
"dependencies": {
"@extend-chrome/messages": "^1.2.2",
"@floating-ui/core": "^1.7.3",
"@parcel/runtime-js": "2.8.3",
"@solid-primitives/event-listener": "^2.3.0",
"@thedutchcoder/postcss-rem-to-px": "^0.0.2",
"@types/bun": "^1.2.2",
"@types/chroma-js": "^2.4.4",
"@types/color-hash": "^1.0.5",
"@types/semver": "^7.5.8",
"@virtualstate/navigation": "^1.0.1-alpha.201",
"assert": "^2.1.0",
"bulma": "^0.9.4",
"bun-types": "^1.2.2",
"chroma-js": "^2.4.2",
"clsx": "^2.1.1",
"color-hash": "^2.0.2",
"dexie": "^4.0.1",
"minimatch": "^9.0.3",
"motion": "^12.4.1",
"nanoid": "^5.0.2",
"p-event": "^6.0.0",
"plasmo": "0.90.5",
"px-robula-plus": "^1.0.1",
"rxjs": "^7.8.1",
"semver": "^7.6.2",
"svelte": "4.2.0",
"svelte-floating-ui": "^1.6.2",
"svelte-french-toast": "^1.2.0",
"svelte-preprocess": "5.0.4",
"three": "^0.173.0",
"ts-pattern": "^5.1.1",
"ts-results": "^3.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@parcel/plugin": "2.9.3",
"@playwright/test": "^1.50.1",
"@plasmohq/parcel-config": "0.42.0",
"@tailwindcss/typography": "^0.5.12",
"@types/assert": "^1.5.8",
"@types/chrome": "0.0.245",
"@types/node": "^20.11.17",
"@types/three": "^0.180.0",
"autoprefixer": "^10.4.16",
"crypto-browserify": "^3.12.0",
"daisyui": "^4.10.2",
"postcss": "^8.4.32",
"postcss-cli": "^10.1.0",
"prettier": "3.0.3",
"prettier-plugin-svelte": "^3.2.3",
"sharp": "^0.33.3",
"svelte-check": "^4.3.3",
"tailwindcss": "^3.4.17",
"typescript": "5.3.3"
},
"manifest": {
"permissions": [
"unlimitedStorage"
],
"commands": {
"toggle-overlay": {
"suggested_key": {
"default": "Alt+V"
},
"description": "Toggle the Vind overlay on the current page."
},
"open-options": {
"description": "Open the Vind options page."
},
"new-binding": {
"suggested_key": {
"default": "Alt+Shift+V"
},
"description": "Create a new keyboard shortcut binding."
}
},
"browser_specific_settings": {
"gecko": {
"id": "vind@joacoesteban.com"
}
}
},
"alias": {
"~": "./"
},
"pnpm": {
"overrides": {
"@parcel/runtime-js": "2.8.3"
}
}
}