-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "pnpm-dep-source",
"version": "0.4.0",
"description": "CLI to switch pnpm dependencies between local, GitHub, GitLab, and NPM sources",
"type": "module",
"bin": {
"pnpm-dep-source": "./dist/cli.js",
"pds": "./dist/cli.js"
},
"exports": {
".": "./dist/cli.js",
"./vite": "./dist/vite.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"prepublishOnly": "pnpm build"
},
"keywords": [
"pnpm",
"dependency",
"monorepo",
"workspace",
"development"
],
"author": "Ryan Williams <ryan@runsascoded.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/runsascoded/pnpm-dep-source.git"
},
"homepage": "https://github.com/runsascoded/pnpm-dep-source#readme",
"bugs": {
"url": "https://github.com/runsascoded/pnpm-dep-source/issues"
},
"dependencies": {
"commander": "^13.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^4.0.16"
}
}