-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.25 KB
/
package.json
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
{
"name": "@hyperse/hyper-env",
"version": "1.0.14",
"description": "Populates your environment from .env files at run-time rather than build-time.",
"keywords": [
"hyperse",
"next env",
"next runtime env",
"hyper env"
],
"repository": {
"type": "git",
"url": "[email protected]:hyperse-io/hyper-env.git"
},
"type": "module",
"exports": {
".": {
"import": "./index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"bin": {
"hyper-env": "./bin/hyper-env.mjs",
"hyper-next-standalone": "./bin/hyper-next-standalone.mjs"
},
"files": [
"./bin/",
"./dist/",
"./index.js"
],
"scripts": {
"build": "tsup",
"next": "next build",
"lint": "eslint .",
"lint-fix": "yarn lint --fix",
"test": "run-s test-unit",
"test-unit": "vitest run",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint-staged-files": "lint-staged --allow-empty",
"changeset": "changeset",
"release": "yarn build && changeset publish",
"cz": "cz",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"eslint-plugin-markdown": "5.1.0"
},
"dependencies": {
"@vercel/nft": "^0.27.5",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"globby": "^14.0.2",
"minimist": "^1.2.8"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@hyperse/eslint-config-hyperse": "^1.2.6",
"@hyperse/exec-program": "^1.0.10",
"@types/minimist": "^1.2.5",
"@types/node": "^22.8.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.13.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"next": "15.0.1",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}