-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.07 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "seo-engine",
"version": "1.1.1",
"description": "A lightweight TypeScript SEO metadata generator with Open Graph, Twitter Cards, JSON-LD structured data, and plugin support.",
"repository": {
"type": "git",
"url": "https://github.com/Farimah71/seo-engine.git"
},
"bugs": {
"url": "https://github.com/Farimah71/seo-engine/issues"
},
"homepage": "https://github.com/Farimah71/seo-engine#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"check": "npm run lint && npm run format:check && npm run build && npm test",
"changeset": "changeset",
"version-packages": "changeset version",
"release:prepare": "changeset version && npm run check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [
"seo",
"seo-engine",
"typescript",
"metadata",
"open-graph",
"og-tags",
"twitter-card",
"json-ld",
"structured-data",
"schema-org",
"canonical-url"
],
"license": "MIT",
"author": "Farimah Fattahi",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.9.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9"
},
"overrides": {
"human-id": "3.0.1"
}
}