meodp 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "meodp",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "packageManager": "pnpm@9.12.3",
6
+ "description": "Mystic Eyes of Death Perception. Find out dead links in your site.",
7
+ "keywords": [
8
+ "meodp",
9
+ "check"
10
+ ],
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.cjs"
16
+ }
17
+ },
18
+ "main": "./dist/index.mjs",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.ts",
21
+ "bin": {
22
+ "meodp-ts": "bin/index.ts",
23
+ "meodp": "dist/index.mjs"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "scripts": {
29
+ "build": "unbuild",
30
+ "dev": "unbuild --stub",
31
+ "demo": "npm run example",
32
+ "demo:app": "pnpm -C examples/app run dev",
33
+ "example": "vite-node examples/check-site.ts",
34
+ "test": "npm run test:e2e",
35
+ "test:e2e": "pnpm exec playwright test",
36
+ "lint": "eslint .",
37
+ "typecheck": "tsc --noEmit",
38
+ "prepublishOnly": "npm run build",
39
+ "release": "bumpp --no-commit --no-tag --no-push && npm publish",
40
+ "prepare": "simple-git-hooks"
41
+ },
42
+ "peerDependencies": {
43
+ "playwright": "^1",
44
+ "typescript": "^5.0.0"
45
+ },
46
+ "dependencies": {
47
+ "c12": "^2.0.1",
48
+ "cli-progress": "^3.12.0",
49
+ "consola": "^3.2.3",
50
+ "date-fns": "^4.1.0",
51
+ "fs-extra": "^11.2.0",
52
+ "p-queue": "^8.0.1",
53
+ "strip-ansi": "^7.1.0",
54
+ "winston": "^3.17.0",
55
+ "yargs": "^17.7.2"
56
+ },
57
+ "devDependencies": {
58
+ "@antfu/eslint-config": "^3.8.0",
59
+ "@playwright/test": "^1.48.2",
60
+ "@types/bun": "latest",
61
+ "@types/cli-progress": "^3.11.6",
62
+ "@types/fs-extra": "^11.0.4",
63
+ "@types/node": "^22.9.0",
64
+ "@types/yargs": "^17.0.33",
65
+ "@unocss/eslint-plugin": "^0.64.0",
66
+ "cilicili": "^0.1.1",
67
+ "eslint": "^9.14.0",
68
+ "eslint-plugin-format": "^0.1.2",
69
+ "lint-staged": "^15.2.10",
70
+ "playwright": "^1.48.2",
71
+ "simple-git-hooks": "^2.11.1",
72
+ "tsx": "^4.19.2",
73
+ "unbuild": "^2.0.0",
74
+ "vite-node": "^2.1.4"
75
+ },
76
+ "simple-git-hooks": {
77
+ "pre-commit": "pnpm lint-staged"
78
+ },
79
+ "lint-staged": {
80
+ "*": "eslint --fix"
81
+ }
82
+ }