-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.61 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.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
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
101
102
103
104
105
106
{
"name": "@croct/plug-next",
"version": "0.0.0-dev",
"description": "React components and utilities to plug your Next.js applications into Croct.",
"author": {
"name": "Croct",
"url": "https://croct.com",
"email": "lib+plug-next@croct.com"
},
"keywords": [
"croct",
"personalization",
"react",
"next.js",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/plug-next.git"
},
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
"./*": {
"import": "./*.js",
"require": "./*.cjs"
}
},
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'",
"test": "jest -c jest.config.mjs --coverage",
"validate": "tsc --noEmit",
"build": "tsup",
"postbuild": "./post-build.mjs"
},
"peerDependencies": {
"next": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": false
},
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
},
"dependencies": {
"@croct/sdk": "^0.22.0",
"@croct/plug": "^0.23.0",
"@croct/plug-react": "^0.17.0",
"@vercel/functions": "^3.0.0",
"cookie": "^0.7.0",
"path-to-regexp": "^6.3.0"
},
"devDependencies": {
"next": "^16.0.0",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@croct/eslint-plugin": "^0.8.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/cookie": "^0.6.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/set-cookie-parser": "^2.4.7",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"babel-loader": "^10.0.0",
"esbuild-fix-imports-plugin": "^1.0.19",
"eslint": "^9.39.2",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest-environment-node": "^30.0.0",
"jest-extended": "^7.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"set-cookie-parser": "^3.0.0",
"ts-node": "^10.8.1",
"tsc-alias": "^1.8.8",
"tsup": "^8.4.0",
"typescript": "^5.4.5"
},
"files": [
"**/*.js",
"**/*.cjs",
"**/*.mjs",
"**/*.ts",
"**/*.cts",
"**/*.map"
]
}