Skip to content

Commit f827843

Browse files
authored
[add] types & functions for HTTP Cookie & Tree data structure (#28)
1 parent 68067eb commit f827843

File tree

11 files changed

+1444
-1437
lines changed

11 files changed

+1444
-1437
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: pnpm/action-setup@v4
1616
with:
17-
version: 9
17+
version: 10
1818
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 22

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"eamodio.gitlens",
1111
"github.vscode-pull-request-github",
1212
"github.vscode-github-actions",
13-
"gitHub.copilot"
13+
"github.copilot"
1414
]
1515
}

package.json

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-utility",
3-
"version": "4.4.3",
3+
"version": "4.5.0",
44
"license": "LGPL-3.0",
55
"author": "[email protected]",
66
"description": "Web front-end toolkit based on TypeScript",
@@ -24,33 +24,42 @@
2424
"main": "dist/index.js",
2525
"module": "dist/index.esm.js",
2626
"dependencies": {
27-
"@swc/helpers": "^0.5.15",
28-
"element-internals-polyfill": "^1.3.13",
27+
"@swc/helpers": "^0.5.17",
28+
"element-internals-polyfill": ">=1",
2929
"regenerator-runtime": "^0.14.1"
3030
},
3131
"peerDependencies": {
3232
"typescript": ">=4.1"
3333
},
3434
"devDependencies": {
35-
"@parcel/packager-ts": "~2.13.3",
36-
"@parcel/transformer-typescript-types": "~2.13.3",
35+
"@parcel/packager-ts": "~2.15.4",
36+
"@parcel/transformer-typescript-types": "~2.15.4",
3737
"@peculiar/webcrypto": "^1.5.0",
3838
"@types/jest": "^29.5.14",
39-
"@types/node": "^22.13.4",
39+
"@types/node": "^22.17.0",
4040
"@webcomponents/webcomponentsjs": "^2.8.0",
41-
"core-js": "^3.40.0",
41+
"core-js": "^3.44.0",
4242
"husky": "^9.1.7",
4343
"intersection-observer": "^0.12.2",
4444
"jest": "^29.7.0",
4545
"jest-environment-jsdom": "^29.7.0",
46-
"lint-staged": "^15.4.3",
46+
"lint-staged": "^16.1.2",
4747
"open-cli": "^8.0.0",
48-
"parcel": "~2.13.3",
49-
"prettier": "^3.5.1",
50-
"ts-jest": "^29.2.5",
51-
"typedoc": "^0.27.7",
52-
"typedoc-plugin-mdn-links": "^4.0.13",
53-
"typescript": "~5.7.3"
48+
"parcel": "~2.15.4",
49+
"prettier": "^3.6.2",
50+
"ts-jest": "^29.4.0",
51+
"typedoc": "^0.28.9",
52+
"typedoc-plugin-mdn-links": "^5.0.6",
53+
"typescript": "~5.9.2"
54+
},
55+
"pnpm": {
56+
"onlyBuiltDependencies": [
57+
"@parcel/watcher",
58+
"@swc/core",
59+
"core-js",
60+
"lmdb",
61+
"msgpackr-extract"
62+
]
5463
},
5564
"prettier": {
5665
"singleQuote": true,

0 commit comments

Comments
 (0)