-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"name": "@carbon-tools/root",
"private": true,
"scripts": {
"lerna:build": "lerna run build",
"lerna:version": "lerna version --conventional-commits --yes",
"lerna:deploy:ci": "lerna publish from-package --yes",
"lerna:deploy:ci:canary": "lerna publish --yes --canary --preid beta --message 'chore: release new canary versions'",
"lerna:run:gather": "lerna run run:gather",
"lerna:run:dev": "lerna run run:dev",
"lint": "eslint --quiet --fix",
"test": "tap --allow-incomplete-coverage --node-arg=--require=ts-node/register/transpile-only",
"posttest": "tap --allow-incomplete-coverage --coverage-report=html --coverage-report=cobertura"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@eslint/compat": "1.2.5",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@rollup/plugin-commonjs": "28.0.2",
"@types/eslint": "9.6.1",
"@types/node": "22.10.7",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"cpy-cli": "5.0.0",
"cross-env": "7.0.3",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"lerna": "8.1.9",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup": "4.30.1",
"rollup-plugin-typescript2": "0.36.0",
"tap": "21.0.1",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.7.3"
},
"workspaces": [
"packages/*"
],
"volta": {
"node": "22.13.0",
"npm": "11.0.0"
}
}