-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "secco",
"type": "module",
"version": "2.2.0",
"packageManager": "[email protected]",
"description": "Local package testing made easy. secco is a command-line tool for local development. It uses Verdaccio and direct file copying to apply your latest changes to other projects.",
"author": "LekoArts",
"license": "MIT",
"homepage": "https://github.com/LekoArts/secco",
"repository": {
"type": "git",
"url": "git+https://github.com/LekoArts/secco"
},
"bugs": {
"url": "https://github.com/LekoArts/secco/issues"
},
"keywords": [
"secco",
"verdaccio",
"local",
"cli",
"dev-cli",
"developer-tools"
],
"exports": {
".": {
"import": "./dist/cli.mjs"
}
},
"bin": {
"secco": "dist/cli.mjs"
},
"files": [
"dist/"
],
"engines": {
"node": "^18.19.0 || >=20.5.0",
"pnpm": ">=8.8.0"
},
"scripts": {
"build": "tsup",
"watch": "pnpm run build --watch",
"prepublishOnly": "pnpm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:unit": "vitest run",
"test:unit:w": "vitest watch",
"test:integration": "vitest run --config integration/vitest.config.ts",
"test:integration:w": "vitest watch --config integration/vitest.config.ts",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"version": "changeset version",
"version:ci": "changeset version && pnpm install --lockfile-only",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"chokidar": "^3.6.0",
"consola": "^3.2.3",
"del": "^7.1.0",
"destr": "^2.0.3",
"enquirer": "^2.4.1",
"execa": "^9.5.1",
"find-workspaces": "^0.3.1",
"fs-extra": "^11.2.0",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.8",
"node-fetch": "^3.3.2",
"nypm": "^0.3.12",
"pathe": "^1.1.2",
"rc9": "^2.1.2",
"signal-exit": "^4.1.0",
"valibot": "^0.42.1",
"verdaccio": "^5.32.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@total-typescript/ts-reset": "^0.6.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.8.6",
"@types/yargs": "^17.0.33",
"@verdaccio/types": "^10.8.0",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^9.13.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"strip-ansi": "^7.1.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}