-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.72 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.72 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
{
"name": "@mdxeditor/gurx",
"private": false,
"sideEffects": false,
"type": "module",
"version": "0.0.0-development",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ladle serve",
"build": "tsc && vite build",
"test": "vitest",
"ci-lint": "biome ci",
"lint": "biome check",
"typecheck": "tsc --noEmit",
"docs:build": "typedoc --excludePrivate --out docs --name 'Gurx' src/index.ts"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"packageManager": "npm@10.9.1",
"repository": {
"type": "git",
"url": "https://github.com/mdx-editor/gurx.git"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"files": ["dist"],
"license": "MIT",
"peerDependencies": {
"react": ">= 18 || >= 19",
"react-dom": ">= 18 || >= 19"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ladle/react": "^4.1.2",
"@microsoft/api-extractor": "^7.48.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/browser": "^2.1.6",
"playwright": "^1.49.0",
"prettier": "3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semantic-release": "^24.2.0",
"typedoc": "^0.27.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.6",
"vitest-browser-react": "^0.0.4"
}
}