forked from reteps/sveltia-github-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 702 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 702 Bytes
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
{
"name": "sveltia-github-auth",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler deploy",
"check": "pnpm run '/^check:.*/'",
"check:audit": "pnpm audit",
"check:cspell": "cspell --no-progress",
"check:prettier": "prettier --check .",
"check:eslint": "eslint ."
},
"devDependencies": {
"@types/node": "^22.7.7",
"cspell": "^8.15.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.4.3",
"prettier": "^3.3.3",
"wrangler": "3.81.0"
},
"pnpm": {
"overrides": {
"cookie@<0.7.0": ">=0.7.0"
}
}
}