forked from lerna-lite/lerna-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 5 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
102
103
104
105
106
107
108
109
110
{
"name": "lerna-lite",
"author": "Ghislain B.",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"local-lerna": "node ./packages/cli/dist/cli.js",
"clean": "rimraf --glob packages/*/dist packages/*/tsconfig.tsbuildinfo",
"clean:tarball": "rimraf --glob packages/**/*.tgz",
"build": "tsc --build ./tsconfig.packages.json",
"build:clean": "pnpm clean && tsc --build ./tsconfig.packages.json && echo TSC Build Completed",
"build:full": "pnpm clean && pnpm lint && pnpm prettier:check && tsc --build ./tsconfig.packages.json && echo TSC Build Completed",
"build:pnpm": "pnpm -r --stream build",
"init-cmd": "lerna init --independent --exact --use-workspaces",
"changed-cmd": "lerna changed --all",
"lerna-init": "lerna init --use-workspaces",
"diff-cmd": "lerna diff",
"list-cmd": "lerna list --all",
"exec-win": "lerna exec --scope {@lerna-lite/cli,@lerna-lite/core} -- cross-env-shell echo hello from package: $LERNA_PACKAGE_NAME",
"exec:preview": "lerna exec -- git log -p -2",
"pack-tarball": "lerna run pack-tarball",
"preview:build": "lerna run build --stream --include-dependents --scope=@lerna-lite/listable",
"preview:watch:build": "lerna watch --no-bail --scope=@lerna-lite/listable --include-dependents -- cross-env-shell lerna run build:incremental --stream --include-dependents --scope=$LERNA_PACKAGE_NAME",
"preview:watch:build:pnpm": "lerna watch --no-bail --scope=@lerna-lite/listable --include-dependents -- cross-env-shell pnpm run --stream --filter ...$LERNA_PACKAGE_NAME build:incremental",
"preview:watch:files": "lerna watch --glob=\"src/**/*.ts\" --scope=@lerna-lite/listable --include-dependents -- cross-env-shell echo $LERNA_FILE_CHANGES in package $LERNA_PACKAGE_NAME\"",
"preview:publish-alpha-dry-run": "lerna publish --dry-run --exact --include-merged-tags --preid alpha --dist-tag next prerelease",
"preview:publish": "lerna publish from-package --dry-run --yes",
"preview:version": "lerna version --dry-run --yes",
"major-release": "pnpm build:full && lerna publish 2.0.0",
"preview:release": "lerna publish --dry-run --yes",
"preview:release:canary": "lerna publish --dry-run --yes --canary",
"preview:roll-new-release": "pnpm build:full && lerna version --yes --dry-run && lerna publish from-package --dry-run --yes",
"new-version": "lerna version",
"new-publish": "lerna publish from-package",
"roll-new-release": "pnpm build:full && pnpm new-version && pnpm new-publish",
"prettier:check": "prettier --check **/*.{js,ts,yml,json}",
"prettier:write": "prettier --write **/*.{js,ts,yml,json}",
"ci:lint": "eslint packages",
"lint": "eslint packages --cache --cache-location ./node_modules/.cache/eslint",
"outdated:ws": "pnpm -r --stream outdated",
"test": "vitest --watch --pool forks --config ./vitest/vitest.config.ts",
"posttest": "node scripts/cleanup-temp-files.mjs",
"test:coverage": "vitest --coverage --pool forks --config ./vitest/vitest.config.ts",
"test:coverage:update": "vitest --coverage --pool forks --update --config ./vitest/vitest.config.ts"
},
"homepage": "https://github.com/lerna-lite/lerna-lite",
"repository": {
"type": "git",
"url": "https://github.com/lerna-lite/lerna-lite.git"
},
"bugs": {
"url": "https://github.com/lerna-lite/lerna-lite/issues"
},
"engines": {
"node": "^18.0.0 || >=20.0.0",
"pnpm": "8"
},
"packageManager": "[email protected]",
"devDependencies": {
"@lerna-lite/changed": "workspace:*",
"@lerna-lite/cli": "workspace:*",
"@lerna-lite/core": "workspace:*",
"@lerna-lite/diff": "workspace:*",
"@lerna-lite/exec": "workspace:*",
"@lerna-lite/filter-packages": "workspace:*",
"@lerna-lite/list": "workspace:*",
"@lerna-lite/listable": "workspace:*",
"@lerna-lite/profiler": "workspace:*",
"@lerna-lite/publish": "workspace:*",
"@lerna-lite/run": "workspace:*",
"@lerna-lite/version": "workspace:*",
"@lerna-lite/watch": "workspace:*",
"@lerna-test/helpers": "link:helpers",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.3",
"@types/npmlog": "^7.0.0",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^1.4.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.1.0",
"execa": "^8.0.1",
"file-url": "^4.0.0",
"find-up": "^7.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.12",
"globby": "^14.0.1",
"load-json-file": "^7.0.1",
"normalize-newline": "^4.1.0",
"normalize-path": "^3.0.0",
"npmlog": "^7.0.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"tacks": "^1.2.6",
"temp-dir": "^3.0.0",
"tempy": "^3.1.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"tsm": "^2.3.0",
"typescript": "^5.4.3",
"typescript-eslint": "^7.6.0",
"vitest": "^1.4.0",
"write-json-file": "^5.0.0"
}
}