-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.41 KB
/
package.json
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
{
"name": "@charlietango/react-umbraco",
"private": false,
"type": "module",
"version": "0.3.0",
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"description": "React components for working with Umbraco Headless",
"author": "Charlie Tango",
"license": "MIT",
"homepage": "https://github.com/charlie-tango/react-umbraco#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/charlie-tango/react-umbraco.git"
},
"bugs": "https://github.com/charlie-tango/react-umbraco/issues",
"keywords": ["umbraco", "react", "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=react-umbraco-example dev"
},
"dependencies": {
"html-entities": "^2.5.2"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/browser": "^2.1.4",
"bumpp": "^9.8.1",
"lint-staged": "^15.2.10",
"playwright": "^1.48.2",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"vitest-browser-react": "^0.0.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --apply --no-errors-on-unmatched"
],
"*.md": ["prettier --write"]
},
"prettier": {
"proseWrap": "always",
"printWidth": 80
}
}