-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
32 lines (32 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
27
28
29
30
31
32
{
"name": "sveltekit-adapter-chrome-extension",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/michmich112/sveltekit-adapter-chrome-extension"
},
"license": "MIT",
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js"
},
"./package.json": "./package.json"
},
"types": "index.d.ts",
"scripts": {
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,js,svelte}\" && npm run check-format",
"check": "tsc",
"format": "npm run check-format -- --write",
"check-format": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore",
"test": "uvu test test.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
"@sveltejs/adapter-static": "^3.0.1"
}
}