-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
32 lines (32 loc) · 906 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": "sessionshare",
"version": "1.0.0",
"description": "Easily share files in multiple times with a single link!",
"scripts": {
"dev": "npx wrangler dev",
"deploy": "npx wrangler deploy",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}'"
},
"author": "Paul G.",
"license": "MIT",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-typescript": "^3.0.0",
"itty-router": "^4.0.9",
"prettier": "^2.7.1",
"typescript": "^5.1.3",
"wrangler": "^3.0.1"
}
}