-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.34 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
{
"name": "next-env-space",
"version": "3.3.0",
"description": "Runtime environment variables for Next.js, validated with any Standard Schema library and grouped into isolated spaces",
"keywords": [
"arktype",
"env",
"environment",
"next",
"nextjs",
"runtime",
"standard-schema",
"valibot",
"zod"
],
"license": "Apache-2.0",
"author": "infodusha",
"repository": {
"type": "git",
"url": "git+https://github.com/infodusha/next-env-space.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": [
"./dist/server.js"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"server": [
"./dist/server.d.ts"
]
}
},
"exports": {
".": {
"react-server": {
"types": "./dist/index.react-server.d.ts",
"default": "./dist/index.react-server.js"
},
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit && tsc -p e2e/tsconfig.json && tsc -p unit/tsconfig.json",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"prepublishOnly": "npm run build",
"test": "npm run test:types && npm run test:unit",
"test:types": "tsc -p tsconfig.typetest.json",
"test:unit": "npm run build && node --import next/dist/server/node-environment-baseline.js --test \"unit/**/*.test.ts\"",
"test:e2e": "npm run build && playwright test",
"test:e2e:ui": "npm run build && playwright test --ui",
"prepare": "husky"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0",
"server-only": "^0.0.1"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"arktype": "^2.2.3",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"next": "^16.3.3",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"react": "^19.2.8",
"typescript": "~7.0.2",
"valibot": "^1.4.2",
"zod": "^4.5.3"
},
"peerDependencies": {
"next": "^16.3.3",
"react": "^19.2.8"
}
}