-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 985 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 985 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
31
{
"name": "tyche",
"module": "dist/index.js",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"scripts": {
"preview": "wrangler publish --dry-run --outdir=dist && miniflare -m -e .env --do-persist",
"lint": "prettier --plugin-search-dir . --check src/ && eslint src/",
"format": "prettier --plugin-search-dir . --write src/"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230321.0",
"@miniflare/core": "^2.13.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/crypto-js": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"commander": "^10.0.0",
"crypto-js": "^4.1.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"inquirer": "^8.2.5",
"miniflare": "^2.13.0",
"prettier": "^2.8.0",
"typescript": "^4.9.5",
"wrangler": "^2.13.0"
},
"type": "module"
}