-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "dualmark-monorepo",
"version": "0.0.0",
"private": true,
"description": "Open-source AEO (Answer Engine Optimization) infrastructure — every page, dual-marked.",
"license": "Apache-2.0",
"author": "Dodo Payments <opensource@dodopayments.com> (https://dodopayments.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/dodopayments/dualmark.git"
},
"bugs": {
"url": "https://github.com/dodopayments/dualmark/issues"
},
"homepage": "https://dualmark.dev",
"funding": "https://github.com/sponsors/dodopayments",
"keywords": [
"aeo",
"answer-engine-optimization",
"ai-search",
"llm",
"markdown",
"content-negotiation",
"dualmark",
"monorepo"
],
"packageManager": "bun@1.3.5",
"engines": {
"node": ">=22.12.0"
},
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mdx}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mdx}\"",
"changeset": "changeset",
"version-packages": "changeset version && bun install --lockfile-only",
"release": "turbo run build --filter=./packages/* && changeset publish",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^2.1.8",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"esbuild",
"sharp",
"unrs-resolver"
]
}