-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.78 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.78 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
{
"name": "@visorian/envsync",
"version": "0.5.0",
"private": false,
"description": "Sync .env files from remote storage.",
"homepage": "https://github.com/visorian/envsync#readme",
"repository": "visorian/envsync",
"type": "module",
"bin": "dist/index.mjs",
"exports": {
".": "./dist/index.mjs"
},
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "obuild src/index.ts",
"prepare": "pnpm build",
"release": "pnpm pack && changelogen --release --major && pnpm build && pnpm publish --access=public"
},
"keywords": [],
"author": {
"name": "Jan-Henrik Damaschke",
"email": "jandamaschke@visorian.com",
"url": "https://github.com/itpropro"
},
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@types/node": "^22.15.19",
"@types/yargs": "^17.0.33",
"changelogen": "^0.6.1",
"obuild": "^0.1.1",
"oxlint": "^0.16.11",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"dependencies": {
"c12": "^3.0.4",
"consola": "^3.4.2",
"defu": "^6.1.4",
"destr": "^2.0.5",
"magicast": "^0.3.5",
"ohash": "^2.0.11",
"pathe": "^2.0.3",
"rc9": "^2.1.2",
"ufo": "^1.6.1",
"unstorage": "^1.16.0",
"yargs": "^18.0.0-candidate.7"
},
"peerDependencies": {
"@azure/app-configuration": "^1.9.0",
"@azure/identity": "^4.10.0",
"@azure/keyvault-secrets": "^4.9.0",
"@azure/storage-blob": "^12.27.0"
},
"peerDependenciesMeta": {
"@azure/app-configuration": {
"optional": true
},
"@azure/identity": {
"optional": true
},
"@azure/keyvault-secrets": {
"optional": true
},
"@azure/storage-blob": {
"optional": true
}
}
}