-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.63 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.63 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
{
"name": "@prismicio/react",
"version": "3.4.0",
"description": "React components and hooks to fetch and present Prismic content",
"keywords": [
"typescript",
"prismic",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prismicio/prismic-react.git"
},
"license": "Apache-2.0",
"author": "Prismic <[email protected]> (https://prismic.io)",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist",
"src"
],
"workspaces": [
".",
"e2e-projects/*"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"e2e": "playwright test",
"e2e:ui": "npm run e2e -- --ui",
"format": "prettier --write .",
"lint": "oxlint --deny-warnings",
"prepare": "npm run build",
"test": "npm run lint && npm run types && npm run build && npm run e2e",
"types": "tsc --noEmit"
},
"dependencies": {
"esm-env": "^1.2.2"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@prismicio/client": "^7.17.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.2.3",
"oxlint": "^1.39.0",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"prettier-plugin-jsdoc": "^1.8.0",
"react": "^19.2.1",
"react-dom": "^19.2.3",
"tsdown": "^0.19.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@prismicio/client": "^7",
"react": "^18 || ^19"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}