-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.4 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
{
"name": "skm-lit",
"description": "skm-lit is a library for retrieving secrets stored in Cloud Storage",
"version": "4.0.0",
"author": "Joel Voss <mail@joelvoss.com>",
"license": "MIT",
"homepage": "https://github.com/joelvoss/skm-lit",
"bugs": {
"url": "https://github.com/joelvoss/skm-lit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelvoss/skm-lit.git"
},
"engines": {
"node": ">=18"
},
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"test": "./Taskfile.sh test",
"prepublishOnly": "./Taskfile.sh build"
},
"dependencies": {
"@google-cloud/storage": "7.11.2",
"dotenv": "16.4.5",
"mkdirp": "3.0.1",
"readpkg-lit": "^2.0.2",
"tmp": "0.2.3"
},
"devDependencies": {
"@jvdx/eslint-config": "^4.3.0",
"@jvdx/prettier-config": "^0.3.4",
"@types/node": "^20.14.2",
"@types/tmp": "^0.2.6",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"prettier": "@jvdx/prettier-config",
"prettierIgnore": [
"tests/",
"dist/"
]
}