forked from matthewpi/claws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@rocketnodeinc/claws",
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.mjs",
"type": "module",
"private": true,
"scripts": {
"clean": "rm -f dist/*",
"build": "cross-env USER_AGENT=\"Claws\" $npm_node_execpath build.mjs",
"dev": "cross-env NODE_ENV=development USER_AGENT=\"undefined\" wrangler dev src/index.ts",
"publish": "wrangler publish"
},
"dependencies": {
"itty-router": "2.6.1",
"itty-router-extras": "0.4.2",
"semver": "7.5.4",
"~": "link:./src"
},
"devDependencies": {
"@cloudflare/workers-types": "3.10.0",
"@types/itty-router-extras": "0.4.0",
"@types/semver": "7.5.0",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"@yarnpkg/esbuild-plugin-pnp": "2.0.2",
"cross-env": "7.0.3",
"esbuild": "0.14.39",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "8.0.1",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"typescript": "4.6.4",
"wrangler": "3.1.1"
},
"engines": {
"node": ">=16",
"yarn": ">=1.22"
},
"lint-staged": {
"**/*.{mjs,ts}": [
"yarn prettier --write"
],
"*.json": [
"yarn prettier --write"
],
"*.md": [
"yarn prettier --write"
]
},
"packageManager": "yarn@3.2.1"
}