Skip to content

Commit 72fa40a

Browse files
author
Andrea Cosentino
committed
chore: update dependencies
1 parent 2dbeb20 commit 72fa40a

2 files changed

Lines changed: 406 additions & 120 deletions

File tree

package.json

Lines changed: 106 additions & 105 deletions
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,106 @@
1-
{
2-
"name": "@ndriadev/vite-plugin-universal-api",
3-
"description": "Plugin Mock WebSocket, REST and File-based APIs for Vite",
4-
"private": false,
5-
"version": "2.1.0",
6-
"type": "module",
7-
"files": [
8-
"dist/",
9-
"README.md",
10-
"LICENSE",
11-
"CHANGELOG.md"
12-
],
13-
"main": "./dist/index.cjs",
14-
"module": "./dist/index.mjs",
15-
"types": "./dist/index.d.ts",
16-
"exports": {
17-
".": {
18-
"import": {
19-
"types": "./dist/index.d.mts",
20-
"default": "./dist/index.mjs"
21-
},
22-
"require": {
23-
"types": "./dist/index.d.cts",
24-
"default": "./dist/index.cjs"
25-
}
26-
}
27-
},
28-
"scripts": {
29-
"dev": "tsdown --watch",
30-
"test": "vitest",
31-
"test:coverage": "vitest run --coverage",
32-
"test:run": "vitest run",
33-
"lint": "eslint .",
34-
"lint:fix": "eslint . --fix",
35-
"typecheck": "tsc --noEmit",
36-
"docs:dev": "vitepress dev docs",
37-
"docs:build": "vitepress build docs",
38-
"docs:preview": "vitepress preview docs",
39-
"clean": "rimraf dist coverage docs/.vitepress/dist docs/.vitepress/cache",
40-
"prebuild": "pnpm run clean",
41-
"build": "tsdown",
42-
"postbuild": "node scripts/verify-build.js",
43-
"prepublishOnly": "pnpm run lint && pnpm run typecheck && pnpm run test:run && pnpm run build",
44-
"changelog": "node scripts/generate-changelog.js",
45-
"release:patch": "bash scripts/release.sh patch",
46-
"release:minor": "bash scripts/release.sh minor",
47-
"release:major": "bash scripts/release.sh major",
48-
"postversion": "git push && git push --tags",
49-
"version": "pnpm run changelog && git add CHANGELOG.md"
50-
},
51-
"engines": {
52-
"node": "^16.0.0 || ^18.0.0 || >=20.0.0"
53-
},
54-
"devDependencies": {
55-
"@eslint/eslintrc": "^3.3.5",
56-
"@eslint/js": "^10.0.1",
57-
"@types/node": "^22.19.17",
58-
"@types/ws": "^8.18.1",
59-
"@vitest/coverage-v8": "^4.1.4",
60-
"eslint": "^10.2.0",
61-
"globals": "^17.4.0",
62-
"mkdirp": "^3.0.1",
63-
"rimraf": "^6.1.3",
64-
"tsdown": "^0.21.7",
65-
"typescript-eslint": "^8.58.1",
66-
"vitepress": "^1.6.4",
67-
"vitest": "^4.1.4",
68-
"ws": "^8.20.0"
69-
},
70-
"peerDependencies": {
71-
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || >=8.0.0"
72-
},
73-
"keywords": [
74-
"vite",
75-
"vite-plugin",
76-
"plugin",
77-
"mock",
78-
"server",
79-
"api",
80-
"mock-server",
81-
"REST",
82-
"rest",
83-
"WS",
84-
"ws",
85-
"websocket",
86-
"FS",
87-
"file-system",
88-
"file-based"
89-
],
90-
"repository": {
91-
"type": "git",
92-
"url": "git+https://github.com/nDriaDev/vite-plugin-universal-api"
93-
},
94-
"author": {
95-
"name": "Andrea Cosentino",
96-
"email": "admin@ndria.dev",
97-
"url": "https://github.com/nDriaDev/"
98-
},
99-
"readmeFilename": "README.md",
100-
"bugs": {
101-
"url": "https://github.com/nDriaDev/vite-plugin-universal-api/issues"
102-
},
103-
"homepage": "https://github.com/nDriaDev/vite-plugin-universal-api",
104-
"license": "MIT"
105-
}
1+
{
2+
"name": "@ndriadev/vite-plugin-universal-api",
3+
"description": "Plugin Mock WebSocket, REST and File-based APIs for Vite",
4+
"private": false,
5+
"version": "2.1.0",
6+
"type": "module",
7+
"files": [
8+
"dist/",
9+
"README.md",
10+
"LICENSE",
11+
"CHANGELOG.md"
12+
],
13+
"main": "./dist/index.cjs",
14+
"module": "./dist/index.mjs",
15+
"types": "./dist/index.d.ts",
16+
"exports": {
17+
".": {
18+
"import": {
19+
"types": "./dist/index.d.mts",
20+
"default": "./dist/index.mjs"
21+
},
22+
"require": {
23+
"types": "./dist/index.d.cts",
24+
"default": "./dist/index.cjs"
25+
}
26+
}
27+
},
28+
"scripts": {
29+
"dev": "tsdown --watch",
30+
"test": "vitest",
31+
"test:coverage": "vitest run --coverage",
32+
"test:run": "vitest run",
33+
"lint": "eslint .",
34+
"lint:fix": "eslint . --fix",
35+
"typecheck": "tsc --noEmit",
36+
"docs:dev": "vitepress dev docs",
37+
"docs:build": "vitepress build docs",
38+
"docs:preview": "vitepress preview docs",
39+
"clean": "rimraf dist coverage docs/.vitepress/dist docs/.vitepress/cache",
40+
"prebuild": "pnpm run clean",
41+
"build": "tsdown",
42+
"postbuild": "node scripts/verify-build.js",
43+
"prepublishOnly": "pnpm run lint && pnpm run typecheck && pnpm run test:run && pnpm run build",
44+
"changelog": "node scripts/generate-changelog.js",
45+
"release:patch": "bash scripts/release.sh patch",
46+
"release:minor": "bash scripts/release.sh minor",
47+
"release:major": "bash scripts/release.sh major",
48+
"postversion": "git push && git push --tags",
49+
"version": "pnpm run changelog && git add CHANGELOG.md"
50+
},
51+
"engines": {
52+
"node": "^16.0.0 || ^18.0.0 || >=20.0.0"
53+
},
54+
"devDependencies": {
55+
"@eslint/eslintrc": "^3.3.5",
56+
"@eslint/js": "^10.0.1",
57+
"@types/node": "^22.19.17",
58+
"@types/ws": "^8.18.1",
59+
"@vitest/coverage-v8": "^4.1.4",
60+
"eslint": "^10.2.0",
61+
"globals": "^17.4.0",
62+
"mkdirp": "^3.0.1",
63+
"rimraf": "^6.1.3",
64+
"tsdown": "^0.21.7",
65+
"tsx": "^4.21.0",
66+
"typescript-eslint": "^8.58.1",
67+
"vitepress": "^1.6.4",
68+
"vitest": "^4.1.4",
69+
"ws": "^8.20.0"
70+
},
71+
"peerDependencies": {
72+
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || >=8.0.0"
73+
},
74+
"keywords": [
75+
"vite",
76+
"vite-plugin",
77+
"plugin",
78+
"mock",
79+
"server",
80+
"api",
81+
"mock-server",
82+
"REST",
83+
"rest",
84+
"WS",
85+
"ws",
86+
"websocket",
87+
"FS",
88+
"file-system",
89+
"file-based"
90+
],
91+
"repository": {
92+
"type": "git",
93+
"url": "git+https://github.com/nDriaDev/vite-plugin-universal-api"
94+
},
95+
"author": {
96+
"name": "Andrea Cosentino",
97+
"email": "admin@ndria.dev",
98+
"url": "https://github.com/nDriaDev/"
99+
},
100+
"readmeFilename": "README.md",
101+
"bugs": {
102+
"url": "https://github.com/nDriaDev/vite-plugin-universal-api/issues"
103+
},
104+
"homepage": "https://github.com/nDriaDev/vite-plugin-universal-api",
105+
"license": "MIT"
106+
}

0 commit comments

Comments
 (0)