-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
{
"name": "verdaccio-google-cloud",
"version": "11.1.0",
"description": "Google Cloud Storage plugin for Verdaccio",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib/"
],
"engines": {
"node": ">=24"
},
"packageManager": "[email protected]",
"scripts": {
"clean": "rimraf ./lib",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"",
"build": "vite build",
"ci:version:changeset": "changeset version",
"ci:version": "pnpm ci:version:changeset && npm run ci:version:install",
"ci:version:install": "pnpm install --frozen-lockfile=false",
"ci:publish": "changeset publish"
},
"keywords": [
"verdaccio",
"verdaccio-plugin",
"google-cloud",
"datastore",
"storage"
],
"repository": {
"type": "git",
"url": "git://github.com/verdaccio/verdaccio-google-cloud"
},
"author": "Juan Picado <[email protected]>",
"license": "MIT",
"dependencies": {
"@google-cloud/datastore": "10.1.0",
"@google-cloud/storage": "7.19.0",
"@verdaccio/config": "9.0.0-next-9.5",
"@verdaccio/core": "9.0.0-next-9.5",
"@verdaccio/streams": "11.0.0-6-next.5",
"debug": "4.4.3"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/debug": "4.1.12",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "25.5.0",
"@verdaccio/eslint-config": "12.0.0",
"@verdaccio/plugin-verifier": "1.0.0-next-9.1",
"@verdaccio/types": "13.0.0-next-8.11",
"cross-env": "^7.0.3",
"eslint": "10.0.2",
"prettier": "3.8.1",
"rimraf": "^5.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vite": "8.0.1",
"vite-plugin-dts": "4.5.4",
"vitest": "4.1.0"
}
}