-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.55 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.55 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@charlietango/umbraco-rich-text",
"private": false,
"type": "module",
"version": "2.0.0",
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"description": "React component for working with rich text from the Umbraco Content Delivery API.",
"author": "Charlie Tango",
"license": "MIT",
"homepage": "https://github.com/charlie-tango/umbraco-rich-text#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/charlie-tango/umbraco-rich-text.git"
},
"bugs": "https://github.com/charlie-tango/umbraco-rich-text/issues",
"keywords": [
"umbraco",
"react",
"rich text",
"content delivery api",
"headless cms"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "biome check .",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"stackblitz": {
"startCommand": "pnpm build && pnpm --filter=@charlietango/umbraco-rich-text--example dev"
},
"dependencies": {
"html-entities": "^2.6.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/node": "^24.2.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/browser": "^3.2.4",
"bumpp": "^10.3.2",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rimraf": "^6.1.2",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vite": "^7.1.2",
"vitest": "^3.2.4",
"vitest-browser-react": "^1.0.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --fix --no-errors-on-unmatched"
],
"*.md": [
"prettier --write"
]
},
"prettier": {
"proseWrap": "always",
"printWidth": 80
}
}