-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.53 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.53 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
{
"name": "@prismicio/react",
"version": "3.4.1",
"description": "React components and hooks to fetch and present Prismic content",
"keywords": [
"prismic",
"react",
"typescript"
],
"license": "Apache-2.0",
"author": "Prismic <contact@prismic.io> (https://prismic.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/prismicio/prismic-react.git"
},
"workspaces": [
".",
"e2e-projects/*"
],
"files": [
"dist",
"src"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"e2e": "playwright test",
"e2e:ui": "npm run e2e -- --ui",
"format": "oxfmt",
"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.59.1",
"@prismicio/client": "^7.17.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.4.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"playwright": "^1.59.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"peerDependencies": {
"@prismicio/client": "^7",
"react": "^18 || ^19"
},
"engines": {
"node": ">=20"
}
}