forked from remkoj/optimizely-dxp-clients
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.61 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.61 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
{
"name": "@remkoj/optimizely-cms-react",
"license": "Apache-2.0",
"version": "4.3.1",
"repository": "https://github.com/remkoj/optimizely-dxp-clients.git",
"author": "Remko Jantzen <693172+remkoj@users.noreply.github.com>",
"homepage": "https://github.com/remkoj/optimizely-dxp-clients/tree/main/packages/optimizely-cms-react",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"exports": {
".": "./dist/index.js",
"./components": "./dist/components.js",
"./rsc": "./dist/rsc.js"
},
"typesVersions": {
"*": {
"components": [
"dist/components.d.ts"
],
"rsc": [
"dist/rsc.d.ts"
]
}
},
"devDependencies": {
"@remkoj/optimizely-graph-client": "workspace:4.3.1",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.13.5",
"@types/react": "^18.3.18",
"@types/react-dom": "18.3.5",
"entities": "^6.0.0",
"graphql": "^16.10.0",
"graphql-request": "^6.1.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"scheduler": "^0.25.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"crypto-js": "^4.2.0"
},
"peerDependencies": {
"@remkoj/optimizely-graph-client": "^4",
"entities": "^6",
"graphql": "^16",
"graphql-request": "^6",
"react": "^18",
"react-dom": "^18"
},
"scripts": {
"clean": "tsc --build --clean",
"prepare": "yarn tsc --build --force",
"watch": "tsc --watch",
"recompile": "tsc --build --clean && tsc --build --force"
}
}