-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.96 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
{
"name": "vercel-env-create",
"version": "0.0.2",
"license": "MIT",
"description": "",
"author": "itsbrex <github@itsbrex.dev> (https://itsbrex.dev)",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"bin": "./dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"lint": "prettier -c . && eslint . --max-warnings=0 --fix && tsc --noEmit",
"prepare": "husky install",
"format": "prettier --write .",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@hideoo/eslint-config": "1.1.0",
"@hideoo/prettier-config": "1.0.1",
"@hideoo/tsconfig": "1.0.0",
"@types/esm": "^3.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"chai": "*",
"eslint": "8.34.0",
"esm": "^3.2.25",
"husky": "^8.0.0",
"lint-staged": "13.1.2",
"mocha": "*",
"node": "link:@@types/node",
"prettier": "2.8.4",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"unbuild": "^1.1.2",
"vite": "^4.1.4",
"vitest": "^0.29.3",
"vitest-ts": "^1.0.0"
},
"engines": {
"node": ">=18"
},
"files": [
"index.cjs",
"dist"
],
"packageManager": "pnpm@7.27.1",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"keywords": [
"cli",
"environment-variables",
"env",
"push",
"vercel",
"env-file"
],
"homepage": "https://github.com/itsbrex/vercel-env-create",
"repository": {
"type": "git",
"url": "https://github.com/itsbrex/vercel-env-create.git"
},
"bugs": "https://github.com/itsbrex/vercel-env-create/issues",
"prettier": "@hideoo/prettier-config",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown --cache",
"**/*.ts": "eslint --max-warnings=0 --fix"
}
}