-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.66 KB
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
{
"private": true,
"name": "neh",
"version": "1.0.0",
"description": "A tool that redirects you; intended to be an Alfred for your browser.",
"scripts": {
"build": "node scripts/build-assets.js",
"predev": "node scripts/build-assets.js",
"start": "wrangler dev",
"publish": "node scripts/build-assets.js && wrangler deploy",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"lint": "yarn lint:code && yarn lint:misc",
"lint:fix": "yarn lint:code:fix && yarn lint:misc:fix",
"lint:code": "eslint .",
"lint:code:fix": "eslint . --fix",
"lint:misc": "prettier --check '**/*.{json,md,pug}' --ignore-path .gitignore",
"lint:misc:fix": "prettier --write '**/*.{json,md,pug}' --ignore-path .gitignore",
"ci": "yarn build && yarn typecheck && yarn lint && yarn test"
},
"author": "E-Liang Tan <eliang@eliangtan.com>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.0.0",
"@prettier/plugin-pug": "^3.4.2",
"@types/fuzzyset": "latest",
"@types/node": "^22.0.0",
"@types/pug": "latest",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@udacity/types-service-worker-mock": "latest",
"@vitest/coverage-v8": "^4.0.0",
"cloudflare-worker-mock": "^1.2.0",
"env-cmd": "latest",
"eslint": "^10.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fuzzyset": "latest",
"jest-fetch-mock": "latest",
"prettier": "^3.0.0",
"pug": "^3.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^6.0.0",
"vitest": "^4.0.0",
"wrangler": "^4.0.0"
}
}