-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.74 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.74 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
78
79
80
81
82
83
{
"name": "generator-verdaccio-plugin",
"version": "7.1.0",
"description": "plugin generator for verdaccio",
"homepage": "https://github.com/verdaccio",
"author": {
"name": "Juan Picado <@jotadeveloper>",
"email": "juanpicado19@gmail.com",
"url": "https://github.com/verdaccio/generator-verdaccio-plugin"
},
"type": "module",
"files": [
"generators"
],
"keywords": [
"verdaccio-plugin",
"yeoman-generator"
],
"dependencies": {
"@verdaccio/config": "8.0.0-next-8.30",
"@verdaccio/core": "8.0.0-next-8.30",
"chalk": "4.1.2",
"debug": "4.4.3",
"lodash": "4.17.23",
"yeoman-environment": "5.1.2",
"yeoman-generator": "7.5.1",
"yosay": "3.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@changesets/get-dependents-graph": "1.3.5",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/chalk": "2.2.4",
"@types/debug": "4.1.12",
"@types/express": "4.17.25",
"@types/jsonwebtoken": "9.0.10",
"@types/lodash": "4.14.195",
"@types/mocha": "10.0.10",
"@types/node": "25.0.9",
"@verdaccio/auth": "8.0.0-next-8.30",
"@verdaccio/eslint-config": "12.0.0",
"@verdaccio/types": "13.0.0-next-8.10",
"@vitest/coverage-v8": "4.0.18",
"eslint": "10.0.2",
"express": "4.22.1",
"prettier": "3.8.1",
"typedoc": "0.28.17",
"typedoc-plugin-markdown": "4.10.0",
"typescript": "5.9.3",
"vitepress": "1.6.4",
"vitest": "4.0.18",
"@verdaccio/plugin-verifier": "1.0.0-next-9.1",
"yeoman-test": "11.2.0"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git://github.com/verdaccio/generator-verdaccio-plugin"
},
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"",
"release": "standard-version -a -s",
"type-check": "tsc --noEmit -p tsconfig.build.json",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build": "rm -Rf ./generators && tsc && cp -R ./src/app/templates generators/app/",
"test": "pnpm build && vitest run",
"test:coverage": "pnpm build && vitest run --coverage",
"lint": "eslint --max-warnings 10 \"**/*.ts\" --fix",
"ci:version:changeset": "changeset version",
"ci:version": "npm run ci:version:changeset && npm run ci:version:install",
"ci:version:install": "pnpm install --frozen-lockfile=false",
"ci:publish": "changeset publish",
"docs:api": "typedoc",
"docs:dev": "pnpm docs:api && vitepress dev docs",
"docs:build": "pnpm docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"license": "MIT"
}