-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.76 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.76 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
{
"name": "google-search-datepicker",
"version": "0.0.5",
"license": "MIT",
"author": "Hideki Ikemoto",
"type": "module",
"scripts": {
"archive": "tsx ./scripts/archive.ts",
"build": "pnpm build:vite && pnpm build:manifest",
"build:manifest": "tsx ./scripts/make_manifest.ts",
"build:vite": "vite build",
"deploy": "tsx ./scripts/github_release.ts",
"fix": "pnpm fix:eslint && pnpm format",
"fix:eslint": "ESLINT_USE_FLAT_CONFIG=true eslint . --fix",
"format": "pnpm format:prettier && pnpm format:sort-package-json",
"format:check": "pnpm format:check:prettier && pnpm format:check:sort-package-json",
"format:check:prettier": "prettier --check .",
"format:check:sort-package-json": "sort-package-json --check",
"format:prettier": "prettier --write .",
"format:sort-package-json": "sort-package-json",
"lint:ci": "pnpm format:check && pnpm lint:tsc && pnpm lint:eslint:ci",
"lint:eslint": "ESLINT_USE_FLAT_CONFIG=true eslint .",
"lint:eslint:ci": "ESLINT_USE_FLAT_CONFIG=true eslint --format junit --output-file ./reports/eslint/eslint.xml .",
"lint:tsc": "tsc --noEmit",
"test": "vitest",
"test:ci": "vitest run"
},
"devDependencies": {
"@types/chrome": "0.1.38",
"@types/node": "^24.12.0",
"date-fns": "4.1.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-junit": "^9.0.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"sort-package-json": "^3.6.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^7.3.1",
"vitest": "^4.1.1",
"zip-a-folder": "6.1.0"
},
"packageManager": "pnpm@10.33.0"
}