-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.76 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
{
"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.0.289",
"@types/node": "^22.10.4",
"date-fns": "4.1.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-junit": "^8.40.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"sort-package-json": "^2.12.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vitest": "^2.1.6",
"zip-a-folder": "3.1.8"
},
"packageManager": "[email protected]"
}