-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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
{
"name": "pnpm-multi-versions",
"version": "0.4.0",
"packageManager": "[email protected]",
"description": "Find multiple versions of dependencies from pnpm lockfile.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/sxzz/pnpm-multi-versions#readme",
"bugs": {
"url": "https://github.com/sxzz/pnpm-multi-versions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/pnpm-multi-versions.git"
},
"author": "三咲智子 Kevin Deng <[email protected]>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./cli": "./dist/cli.js",
"./package.json": "./package.json"
},
"bin": {
"pnpm-multi-versions": "./bin/pnpm-multi-versions.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsx ./run-cli.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@pnpm/lockfile.types": "^1001.0.2",
"cac": "^6.7.14",
"find-up-simple": "^1.0.0",
"picocolors": "^1.1.1",
"yaml": "^2.7.0"
},
"devDependencies": {
"@sxzz/eslint-config": "^5.0.0",
"@sxzz/prettier-config": "^2.1.1",
"@types/node": "^22.12.0",
"bumpp": "^10.0.1",
"eslint": "^9.19.0",
"oxc-transform": "^0.48.1",
"prettier": "^3.4.2",
"tsdown": "^0.5.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}