-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.26 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
{
"name": "pnpm-single-version",
"version": "1.4.4",
"description": "Ensure single version dependencies of pnpm workspace",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Shad02w/pnpm-single-version.git"
},
"files": [
"dist",
"src"
],
"bin": {
"pnpm-single-version": "./dist/command/index.js",
"psv": "./dist/command/index.js"
},
"scripts": {
"run-script": "TS_NODE_PROJECT=./config/tsconfig.script.json node -r ts-node/register",
"build": "pnpm run --silent run-script ./script/build.ts",
"prepublishOnly": "pnpm run --silent run-script ./script/build.ts",
"release": "standard-version",
"test": "jest -c ./config/jest.config.ts"
},
"keywords": [
"pnpm",
"dependencies",
"single version",
"one version",
"pnpmfile",
"package",
"packages",
"workspace",
"workspaces",
"monorepo"
],
"author": "Alvis Tse",
"license": "ISC",
"dependencies": {
"@pnpm/find-workspace-dir": "6.0.2",
"@pnpm/lockfile-file": "8.1.2",
"@pnpm/lockfile-utils": "8.0.3",
"@pnpm/logger": "5.0.0",
"bole": "^5.0.6",
"chalk": "4.1.2",
"commander": "10.0.1",
"find-up": "5.0.0",
"fs-extra": "11.1.1",
"is-ci": "^3.0.1",
"minimatch": "8.0.2"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@jest/types": "29.6.1",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.70",
"@types/fs-extra": "11.0.1",
"@types/is-ci": "^3.0.0",
"@types/jest": "29.5.3",
"@types/minimatch": "5.1.2",
"@types/node": "20.4.2",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.18.15",
"husky": "8.0.3",
"jest": "29.6.1",
"prettier": "3.0.0",
"standard-version": "9.5.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}