Skip to content

Commit 98475c5

Browse files
committed
style: update package configurations and dependencies
- Upgraded various packages in pnpm-lock.yaml, including esbuild to version 0.27.2, @anolilab/semantic-release-preset to version 12.1.2, and eslint-plugin-playwright to version 2.4.0. - Enhanced package.json files across multiple packages to ensure consistency and reflect the latest configurations. - Improved eslint-config and lint-staged-config with updated dependencies for better linting and formatting support.
1 parent ad6cb2c commit 98475c5

File tree

14 files changed

+1424
-1369
lines changed

14 files changed

+1424
-1369
lines changed
Lines changed: 89 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,93 @@
11
{
2-
"name": "browserslist-config-anolilab",
3-
"version": "6.0.7",
4-
"description": "Shareable browserlist config for Anolilab projects.",
5-
"keywords": [
6-
"browserslist",
7-
"browserslist-config",
8-
"anolilab",
9-
"browsers"
10-
],
11-
"homepage": "https://anolilab.com/nodejs/packages/browserslist-config",
12-
"bugs": {
13-
"url": "https://github.com/anolilab/javascript-style-guide/issues"
14-
},
15-
"repository": {
16-
"type": "git",
17-
"url": "git+https://github.com/anolilab/javascript-style-guide.git",
18-
"directory": "packages/browserslist-config-anolilab"
19-
},
20-
"funding": [
21-
{
22-
"type": "github",
23-
"url": "https://github.com/sponsors/prisis"
2+
"name": "browserslist-config-anolilab",
3+
"version": "6.0.7",
4+
"description": "Shareable browserlist config for Anolilab projects.",
5+
"keywords": [
6+
"browserslist",
7+
"browserslist-config",
8+
"anolilab",
9+
"browsers"
10+
],
11+
"homepage": "https://anolilab.com/nodejs/packages/browserslist-config",
12+
"bugs": {
13+
"url": "https://github.com/anolilab/javascript-style-guide/issues"
2414
},
25-
{
26-
"type": "consulting",
27-
"url": "https://anolilab.com/support"
28-
}
29-
],
30-
"license": "MIT",
31-
"author": {
32-
"name": "Daniel Bannert",
33-
"email": "[email protected]"
34-
},
35-
"sideEffects": false,
36-
"exports": {
37-
".": {
38-
"types": "./dist/index.d.cts",
39-
"import": "./dist/index.mjs",
40-
"require": "./dist/index.cjs"
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/anolilab/javascript-style-guide.git",
18+
"directory": "packages/browserslist-config-anolilab"
19+
},
20+
"funding": [
21+
{
22+
"type": "github",
23+
"url": "https://github.com/sponsors/prisis"
24+
},
25+
{
26+
"type": "consulting",
27+
"url": "https://anolilab.com/support"
28+
}
29+
],
30+
"license": "MIT",
31+
"author": {
32+
"name": "Daniel Bannert",
33+
"email": "[email protected]"
34+
},
35+
"sideEffects": false,
36+
"exports": {
37+
".": {
38+
"types": "./dist/index.d.cts",
39+
"import": "./dist/index.mjs",
40+
"require": "./dist/index.cjs"
41+
},
42+
"./package.json": "./package.json"
43+
},
44+
"main": "dist/index.cjs",
45+
"module": "dist/index.mjs",
46+
"types": "dist/index.d.ts",
47+
"typesVersions": {
48+
">=5.0": {
49+
".": [
50+
"./dist/index.d.ts"
51+
]
52+
}
53+
},
54+
"files": [
55+
"dist",
56+
"README.md",
57+
"CHANGELOG.md",
58+
"LICENSE.md"
59+
],
60+
"scripts": {
61+
"build": "packem build --development",
62+
"build:prod": "packem build --production",
63+
"clean": "rimraf node_modules dist",
64+
"lint:attw": "attw --pack",
65+
"lint:prettier": "prettier .",
66+
"lint:prettier:fix": "prettier --write .",
67+
"lint:types": "tsc --noEmit",
68+
"test": "vitest --config ./vitest.config.ts",
69+
"test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
70+
},
71+
"devDependencies": {
72+
"@anolilab/semantic-release-pnpm": "catalog:cli",
73+
"@anolilab/semantic-release-preset": "catalog:cli",
74+
"@arethetypeswrong/cli": "catalog:dev",
75+
"@visulima/packem": "catalog:dev",
76+
"browserslist": "catalog:network",
77+
"caniuse-lite": "catalog:utils",
78+
"cross-env": "catalog:node",
79+
"esbuild": "catalog:build",
80+
"prettier": "catalog:lint",
81+
"rimraf": "catalog:node",
82+
"semantic-release": "catalog:cli",
83+
"typescript": "catalog:tsc",
84+
"vitest": "catalog:test"
85+
},
86+
"engines": {
87+
"node": ">=20.18.* <=25.*"
4188
},
42-
"./package.json": "./package.json"
43-
},
44-
"main": "dist/index.cjs",
45-
"module": "dist/index.mjs",
46-
"types": "dist/index.d.ts",
47-
"typesVersions": {
48-
">=5.0": {
49-
".": [
50-
"./dist/index.d.ts"
51-
]
89+
"publishConfig": {
90+
"access": "public",
91+
"provenance": true
5292
}
53-
},
54-
"files": [
55-
"dist",
56-
"README.md",
57-
"CHANGELOG.md",
58-
"LICENSE.md"
59-
],
60-
"scripts": {
61-
"build": "packem build --development",
62-
"build:prod": "packem build --production",
63-
"clean": "rimraf node_modules dist",
64-
"lint:attw": "attw --pack",
65-
"lint:prettier": "prettier .",
66-
"lint:prettier:fix": "prettier --write .",
67-
"lint:types": "tsc --noEmit",
68-
"test": "vitest --config ./vitest.config.ts",
69-
"test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
70-
},
71-
"devDependencies": {
72-
"@anolilab/semantic-release-pnpm": "catalog:cli",
73-
"@anolilab/semantic-release-preset": "catalog:cli",
74-
"@arethetypeswrong/cli": "catalog:dev",
75-
"@visulima/packem": "catalog:dev",
76-
"browserslist": "catalog:network",
77-
"caniuse-lite": "catalog:utils",
78-
"cross-env": "catalog:node",
79-
"esbuild": "catalog:build",
80-
"prettier": "catalog:lint",
81-
"rimraf": "catalog:node",
82-
"semantic-release": "catalog:cli",
83-
"typescript": "catalog:tsc",
84-
"vitest": "catalog:test"
85-
},
86-
"engines": {
87-
"node": ">=20.18.* <=25.*"
88-
},
89-
"publishConfig": {
90-
"access": "public",
91-
"provenance": true
92-
},
93-
"dependencies": {},
94-
"peerDependencies": {},
95-
"optionalDependencies": {}
96-
}
93+
}
Lines changed: 100 additions & 101 deletions
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,104 @@
11
{
2-
"name": "@anolilab/commitlint-config",
3-
"version": "7.0.0",
4-
"description": "Anolilab´s shareable coding standard config for commitlint.",
5-
"keywords": [
6-
"anolilab",
7-
"commitlint",
8-
"commitlint-config"
9-
],
10-
"homepage": "https://anolilab.com/nodejs/packages/commitlint-config",
11-
"repository": {
12-
"type": "git",
13-
"url": "git+https://github.com/anolilab/javascript-style-guide.git",
14-
"directory": "packages/commitlint-config"
15-
},
16-
"funding": [
17-
{
18-
"type": "github",
19-
"url": "https://github.com/sponsors/prisis"
2+
"name": "@anolilab/commitlint-config",
3+
"version": "7.0.0",
4+
"description": "Anolilab´s shareable coding standard config for commitlint.",
5+
"keywords": [
6+
"anolilab",
7+
"commitlint",
8+
"commitlint-config"
9+
],
10+
"homepage": "https://anolilab.com/nodejs/packages/commitlint-config",
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/anolilab/javascript-style-guide.git",
14+
"directory": "packages/commitlint-config"
2015
},
21-
{
22-
"type": "consulting",
23-
"url": "https://anolilab.com/support"
24-
}
25-
],
26-
"license": "MIT",
27-
"author": {
28-
"name": "Daniel Bannert",
29-
"email": "[email protected]"
30-
},
31-
"sideEffects": false,
32-
"type": "module",
33-
"exports": {
34-
".": {
35-
"import": {
36-
"types": "./dist/index.d.mts",
37-
"default": "./dist/index.mjs"
38-
},
39-
"require": {
40-
"types": "./dist/index.d.cts",
41-
"default": "./dist/index.cjs"
42-
}
16+
"funding": [
17+
{
18+
"type": "github",
19+
"url": "https://github.com/sponsors/prisis"
20+
},
21+
{
22+
"type": "consulting",
23+
"url": "https://anolilab.com/support"
24+
}
25+
],
26+
"license": "MIT",
27+
"author": {
28+
"name": "Daniel Bannert",
29+
"email": "[email protected]"
30+
},
31+
"sideEffects": false,
32+
"type": "module",
33+
"exports": {
34+
".": {
35+
"import": {
36+
"types": "./dist/index.d.mts",
37+
"default": "./dist/index.mjs"
38+
},
39+
"require": {
40+
"types": "./dist/index.d.cts",
41+
"default": "./dist/index.cjs"
42+
}
43+
},
44+
"./package.json": "./package.json"
45+
},
46+
"main": "dist/index.cjs",
47+
"module": "dist/index.mjs",
48+
"types": "dist/index.d.ts",
49+
"typesVersions": {
50+
">=5.0": {
51+
".": [
52+
"./dist/index.d.ts"
53+
]
54+
}
55+
},
56+
"bin": {
57+
"commitlint-config:install": "./dist/bin.mjs"
58+
},
59+
"files": [
60+
"dist",
61+
"README.md",
62+
"CHANGELOG.md",
63+
"LICENSE.md"
64+
],
65+
"scripts": {
66+
"build": "packem build --development",
67+
"build:prod": "packem build --production",
68+
"clean": "rimraf node_modules dist",
69+
"lint:attw": "attw --pack",
70+
"lint:prettier": "prettier .",
71+
"lint:prettier:fix": "prettier --write .",
72+
"lint:types": "tsc --noEmit"
73+
},
74+
"dependencies": {
75+
"@commitlint/config-conventional": "catalog:lint",
76+
"@commitlint/core": "catalog:lint",
77+
"commitizen": "catalog:cli",
78+
"conventional-changelog-conventionalcommits": "catalog:prod",
79+
"cz-conventional-changelog": "catalog:prod"
80+
},
81+
"devDependencies": {
82+
"@anolilab/semantic-release-pnpm": "catalog:cli",
83+
"@anolilab/semantic-release-preset": "catalog:cli",
84+
"@arethetypeswrong/cli": "catalog:dev",
85+
"@commitlint/cli": "catalog:lint",
86+
"@visulima/packem": "catalog:dev",
87+
"esbuild": "catalog:build",
88+
"prettier": "catalog:lint",
89+
"rimraf": "catalog:node",
90+
"semantic-release": "catalog:cli",
91+
"typescript": "catalog:tsc",
92+
"vitest": "catalog:test"
93+
},
94+
"peerDependencies": {
95+
"@commitlint/cli": "^17.6.5 || ^18.x || ^19.x || ^20.0.0"
96+
},
97+
"engines": {
98+
"node": ">=20.18.* <=25.*"
4399
},
44-
"./package.json": "./package.json"
45-
},
46-
"main": "dist/index.cjs",
47-
"module": "dist/index.mjs",
48-
"types": "dist/index.d.ts",
49-
"typesVersions": {
50-
">=5.0": {
51-
".": [
52-
"./dist/index.d.ts"
53-
]
100+
"publishConfig": {
101+
"access": "public",
102+
"provenance": true
54103
}
55-
},
56-
"bin": {
57-
"commitlint-config:install": "./dist/bin.mjs"
58-
},
59-
"files": [
60-
"dist",
61-
"README.md",
62-
"CHANGELOG.md",
63-
"LICENSE.md"
64-
],
65-
"scripts": {
66-
"build": "packem build --development",
67-
"build:prod": "packem build --production",
68-
"clean": "rimraf node_modules dist",
69-
"lint:attw": "attw --pack",
70-
"lint:prettier": "prettier .",
71-
"lint:prettier:fix": "prettier --write .",
72-
"lint:types": "tsc --noEmit"
73-
},
74-
"dependencies": {
75-
"@commitlint/config-conventional": "catalog:lint",
76-
"@commitlint/core": "catalog:lint",
77-
"commitizen": "catalog:cli",
78-
"conventional-changelog-conventionalcommits": "catalog:prod",
79-
"cz-conventional-changelog": "catalog:prod"
80-
},
81-
"devDependencies": {
82-
"@anolilab/semantic-release-pnpm": "catalog:cli",
83-
"@anolilab/semantic-release-preset": "catalog:cli",
84-
"@arethetypeswrong/cli": "catalog:dev",
85-
"@commitlint/cli": "catalog:lint",
86-
"@visulima/packem": "catalog:dev",
87-
"esbuild": "catalog:build",
88-
"prettier": "catalog:lint",
89-
"rimraf": "catalog:node",
90-
"semantic-release": "catalog:cli",
91-
"typescript": "catalog:tsc",
92-
"vitest": "catalog:test"
93-
},
94-
"peerDependencies": {
95-
"@commitlint/cli": "^17.6.5 || ^18.x || ^19.x || ^20.0.0"
96-
},
97-
"engines": {
98-
"node": ">=20.18.* <=25.*"
99-
},
100-
"publishConfig": {
101-
"access": "public",
102-
"provenance": true
103-
},
104-
"optionalDependencies": {}
105-
}
104+
}

0 commit comments

Comments
 (0)