-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.74 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": "@create-markdown/react",
"version": "2.0.3",
"description": "React components and hooks for @create-markdown",
"author": "Val Alexander <val@viewdue.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BunsDev/create-markdown",
"directory": "packages/react"
},
"homepage": "https://github.com/BunsDev/create-markdown/tree/main/packages/react",
"bugs": {
"url": "https://github.com/BunsDev/create-markdown/issues"
},
"keywords": [
"markdown",
"react",
"blocks",
"editor",
"typescript"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm run build:js && pnpm run build:types",
"build:js": "tsup --config tsup.config.ts",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"dev": "tsup --config tsup.config.ts --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@create-markdown/core": "workspace:^",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"jsdom": "^29.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^6.0.2",
"vite": "7.1.11",
"vitest": "^4.1.2"
},
"peerDependencies": {
"@create-markdown/core": ">=2.0.3",
"react": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}