-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 991 Bytes
/
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
{
"name": "spot",
"displayName": "Spot Search",
"version": "0.0.5",
"author": "Sam Liu",
"description": "Quickly search the web with Spot",
"type": "module",
"license": "AGPL-3.0",
"keywords": [
"chrome-extension",
"svelte"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"fmt": "prettier --write '**/*.{svelte,ts,json,css,scss,md}'",
"zip": "npm run build && node src/zip.js"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.19",
"@sveltejs/vite-plugin-svelte": "2.4.6",
"@types/chrome": "^0.0.246",
"autoprefixer": "^10.4.20",
"gulp": "^4.0.2",
"gulp-zip": "^6.0.0",
"postcss": "^8.5.2",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.2.1",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.4.17",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.11"
}
}