-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
26 lines (26 loc) · 848 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
{
"name": "chrome-extension-svelte-typescript-boilerplate",
"description": "Boilerplate for Chrome Extension Svelte Typescript project",
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nekitcorp/chrome-extension-svelte-typescript-boilerplate.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.26",
"@sveltejs/vite-plugin-svelte": "4.0.0",
"@tsconfig/svelte": "5.0.4",
"@types/chrome": "0.0.279",
"svelte": "5.0.5",
"svelte-check": "4.0.5",
"tslib": "2.8.0",
"typescript": "5.6.3",
"vite": "5.4.10"
}
}