-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
package.json
File metadata and controls
70 lines (70 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@coldbydefault/next-seo-lite",
"author": "ColdByDefault",
"license": "MIT",
"version": "2.0.2",
"description": "A zero-dependency SEO helper for Next.js — 100% Lighthouse SEO score out of the box.",
"repository": {
"type": "git",
"url": "git+https://github.com/coldbydefault/next-seo-lite.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"publish:npm": "npm publish --access public --@coldbydefault:registry=https://registry.npmjs.org",
"publish:github": "npm publish --access public --@coldbydefault:registry=https://npm.pkg.github.com",
"release": "npm run test && npm run publish:github && npm run publish:npm"
},
"keywords": [
"next.js",
"seo",
"metadata",
"opengraph",
"twitter-card",
"canonical",
"json-ld",
"structured-data",
"lighthouse",
"hreflang",
"robots",
"schema.org"
],
"peerDependencies": {
"next": ">=13.0.0",
"react": ">=18.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
},
"react": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"next": "^15.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}