forked from lerna-lite/lerna-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 5.14 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
111
112
113
114
115
116
117
{
"name": "lerna-lite",
"author": "Ghislain B.",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"lerna": "lerna",
"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 && 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",
"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",
"pack-tarball:nx": "lerna run pack-tarball --stream --use-nx",
"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",
"preview:version": "lerna version --dry-run --independent-subpackages",
"major-release": "pnpm build:full && lerna publish 2.0.0",
"preview:roll-new-release": "pnpm build:full && pnpm new-version --dry-run && pnpm new-publish --dry-run",
"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 -c .eslintrc.json --no-eslintrc --ignore-path .gitignore",
"lint": "eslint packages -c .eslintrc.json --no-eslintrc --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint",
"outdated:ws": "pnpm -r --stream outdated",
"test": "vitest --watch --no-threads --config ./vitest/vitest.config.ts",
"posttest": "node scripts/cleanup-temp-files.mjs",
"test:coverage": "vitest --coverage --no-threads --config ./vitest/vitest.config.ts",
"test:coverage:update": "vitest --coverage --no-threads --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": ">=16.15.0",
"npm": ">=8.5.0",
"pnpm": "8"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"json5@<1.0.2": ">=1.0.2"
}
},
"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.1",
"@types/node": "^18.15.11",
"@types/npmlog": "^4.1.4",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitest/coverage-c8": "^0.30.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"execa": "^7.1.1",
"file-url": "^4.0.0",
"find-up": "^6.3.0",
"fs-extra": "^11.1.1",
"glob": "^10.0.0",
"globby": "^13.1.4",
"load-json-file": "^7.0.1",
"normalize-newline": "^4.1.0",
"normalize-path": "^3.0.0",
"npmlog": "^7.0.1",
"nx": "15.4.8",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"semver": "^7.4.0",
"tacks": "^1.2.6",
"temp-dir": "^3.0.0",
"tempy": "^3.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"tsm": "^2.3.0",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vitest": "^0.30.1",
"write-json-file": "^5.0.0"
}
}