-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.17 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.17 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
{
"name": "@open-elements/nextjs-app-layer",
"version": "0.5.0",
"description": "Next.js foundation (auth, proxy, admin pages, login/forbidden, layout) for Open Elements applications",
"packageManager": "pnpm@11.3.0",
"engines": {
"node": ">=22"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenElementsLabs/nextjs-app-layer.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
},
"./server/next-auth-types": {
"import": "./dist/server/next-auth-types.js",
"types": "./dist/server/next-auth-types.d.ts"
},
"./layout": {
"import": "./dist/layout/root-layout.js",
"types": "./dist/layout/root-layout.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"prebuild": "pnpm run clean",
"dev": "tsc -p tsconfig.build.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"@open-elements/ui": "^0.8.0",
"lucide-react": "^0.500.0",
"next": "^15.3.0",
"next-auth": "5.0.0-beta.30",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@open-elements/ui": "^0.8.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^9.0.0",
"jsdom": "^29.0.0",
"lucide-react": "^0.500.0",
"next": "^15.3.3",
"next-auth": "5.0.0-beta.30",
"prettier": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.2"
}
}