-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.93 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.93 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
{
"name": "@devsantara/head",
"version": "0.4.1",
"description": "A type-safe HTML head builder library for managing document head metadata with full TypeScript support",
"keywords": [
"devsantara",
"head",
"json-ld",
"meta",
"metadata",
"react",
"schema.org",
"seo",
"typescript"
],
"homepage": "https://github.com/devsantara/head#readme",
"bugs": {
"url": "https://github.com/devsantara/head/issues"
},
"license": "MIT",
"author": "edwintantawi",
"repository": {
"type": "git",
"url": "git+https://github.com/devsantara/head.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./schema-org": "./dist/schema-org/index.js",
"./adapters": "./dist/adapters/index.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"lint:ts": "tsc --noEmit",
"format": "oxfmt",
"format:check": "oxfmt --check",
"prepublishOnly": "pnpm run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "4.0.18",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"oxlint-tsgolint": "^0.11.4",
"schema-dts": "^1.1.5",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@types/react": ">=18.0.0 || >=19.0.0",
"react": ">=18.0.0 || >=19.0.0"
},
"packageManager": "pnpm@10.28.2"
}