-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.53 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.53 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": "@oiper/email-core",
"version": "1.0.0",
"sideEffects": false,
"scripts": {
"test": "vitest run",
"lint": "eslint .",
"fix": "eslint . --fix",
"tc": "tsc --noEmit --watch",
"exports": "tsx ./write-exports.ts",
"build": "zod2md && tsdown --config ./tsdown.config.ts",
"dev": "concurrently --names \"R,T\" --prefix-colors \"blue.dim,magenta.dim\" \"tsdown --config ./tsdown.config.ts --watch\" \"tsc --noEmit --watch\"",
"start": "tsx --watch ./src/index.ts",
"live": "tsx ./dev/live-template.tsx",
"live:dev": "run ./dev/live-template.tsx",
"vite:dev": "vite",
"vite:build": "vite build",
"vite:preview": "vite preview",
"pub": "npm run lint && npm run test && npm run build && npm publish --access public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.mts",
"./dist/index.d.cts"
]
}
},
"dependencies": {
"parse5": "^8.0.0",
"prismjs": "^1.30.0",
"zod-to-json-schema": "^3.25.1"
},
"peerDependencies": {
"@react-email/code-block": "*",
"@react-email/components": "*",
"react": "*",
"react-dom": "*",
"zod": "*"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@react-email/code-block": "^0.2.1",
"@react-email/components": "^1.0.7",
"@types/express": "^5.0.6",
"@types/node": "^24.10.11",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react-swc": "^4.2.3",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"express": "^5.2.1",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prismjs": "^1.30.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"react-router": "^7.13.0",
"tsdown": "^0.15.12",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.1",
"zod2md": "^0.2.5"
}
}