Skip to content

Commit 0899890

Browse files
author
Andrea Cosentino
committed
chore: update dependencies
1 parent 3d87f42 commit 0899890

3 files changed

Lines changed: 871 additions & 846 deletions

File tree

package.json

Lines changed: 98 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,98 @@
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": "1.0.5",
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-
"types": "./dist/index.d.ts",
19-
"require": "./dist/index.cjs",
20-
"import": "./dist/index.mjs"
21-
}
22-
},
23-
"scripts": {
24-
"dev": "unbuild --stub",
25-
"test": "vitest",
26-
"test:coverage": "vitest --coverage",
27-
"test:run": "vitest run",
28-
"lint": "eslint .",
29-
"lint:fix": "eslint . --fix",
30-
"typecheck": "tsc --noEmit",
31-
"docs:dev": "vitepress dev docs",
32-
"docs:build": "vitepress build docs",
33-
"docs:preview": "vitepress preview docs",
34-
"clean": "rimraf dist coverage docs/.vitepress/dist docs/.vitepress/cache",
35-
"prebuild": "pnpm run clean",
36-
"build": "unbuild",
37-
"postbuild": "node scripts/verify-build.js",
38-
"prepublishOnly": "pnpm run lint && pnpm run typecheck && pnpm run test:run && pnpm run build",
39-
"changelog": "node scripts/generate-changelog.js",
40-
"release:patch": "bash scripts/release.sh patch",
41-
"release:minor": "bash scripts/release.sh minor",
42-
"release:major": "bash scripts/release.sh major",
43-
"postversion": "git push && git push --tags",
44-
"version": "pnpm run changelog && git add CHANGELOG.md"
45-
},
46-
"engines": {
47-
"node": "^16.0.0 || ^18.0.0 || >=20.0.0"
48-
},
49-
"devDependencies": {
50-
"@eslint/eslintrc": "^3.3.3",
51-
"@eslint/js": "^10.0.1",
52-
"@types/node": "^25.3.0",
53-
"@vitest/coverage-v8": "4.0.18",
54-
"eslint": "^10.0.0",
55-
"globals": "^17.3.0",
56-
"mkdirp": "^3.0.1",
57-
"rimraf": "^6.1.3",
58-
"typescript-eslint": "^8.56.0",
59-
"unbuild": "^3.6.1",
60-
"vitepress": "^1.6.4",
61-
"vitest": "^4.0.18"
62-
},
63-
"peerDependencies": {
64-
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
65-
},
66-
"keywords": [
67-
"vite",
68-
"vite-plugin",
69-
"plugin",
70-
"mock",
71-
"server",
72-
"api",
73-
"mock-server",
74-
"REST",
75-
"rest",
76-
"WS",
77-
"ws",
78-
"websocket",
79-
"FS",
80-
"file-system",
81-
"file-based"
82-
],
83-
"repository": {
84-
"type": "git",
85-
"url": "git+https://github.com/nDriaDev/vite-plugin-universal-api"
86-
},
87-
"author": {
88-
"name": "Andrea Cosentino",
89-
"email": "andreacosentino.work@gmail.com",
90-
"url": "https://github.com/nDriaDev/"
91-
},
92-
"readmeFilename": "README.md",
93-
"bugs": {
94-
"url": "https://github.com/nDriaDev/vite-plugin-universal-api/issues"
95-
},
96-
"homepage": "https://github.com/nDriaDev/vite-plugin-universal-api",
97-
"license": "MIT"
98-
}
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": "1.0.5",
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+
"types": "./dist/index.d.ts",
19+
"require": "./dist/index.cjs",
20+
"import": "./dist/index.mjs"
21+
}
22+
},
23+
"scripts": {
24+
"dev": "unbuild --stub",
25+
"test": "vitest",
26+
"test:coverage": "vitest --coverage",
27+
"test:run": "vitest run",
28+
"lint": "eslint .",
29+
"lint:fix": "eslint . --fix",
30+
"typecheck": "tsc --noEmit",
31+
"docs:dev": "vitepress dev docs",
32+
"docs:build": "vitepress build docs",
33+
"docs:preview": "vitepress preview docs",
34+
"clean": "rimraf dist coverage docs/.vitepress/dist docs/.vitepress/cache",
35+
"prebuild": "pnpm run clean",
36+
"build": "unbuild",
37+
"postbuild": "node scripts/verify-build.js",
38+
"prepublishOnly": "pnpm run lint && pnpm run typecheck && pnpm run test:run && pnpm run build",
39+
"changelog": "node scripts/generate-changelog.js",
40+
"release:patch": "bash scripts/release.sh patch",
41+
"release:minor": "bash scripts/release.sh minor",
42+
"release:major": "bash scripts/release.sh major",
43+
"postversion": "git push && git push --tags",
44+
"version": "pnpm run changelog && git add CHANGELOG.md"
45+
},
46+
"engines": {
47+
"node": "^16.0.0 || ^18.0.0 || >=20.0.0"
48+
},
49+
"devDependencies": {
50+
"@eslint/eslintrc": "^3.3.5",
51+
"@eslint/js": "^10.0.1",
52+
"@types/node": "^25.4.0",
53+
"@vitest/coverage-v8": "4.0.18",
54+
"eslint": "^10.0.3",
55+
"globals": "^17.4.0",
56+
"mkdirp": "^3.0.1",
57+
"rimraf": "^6.1.3",
58+
"typescript-eslint": "^8.57.0",
59+
"unbuild": "^3.6.1",
60+
"vitepress": "^1.6.4",
61+
"vitest": "^4.0.18"
62+
},
63+
"peerDependencies": {
64+
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
65+
},
66+
"keywords": [
67+
"vite",
68+
"vite-plugin",
69+
"plugin",
70+
"mock",
71+
"server",
72+
"api",
73+
"mock-server",
74+
"REST",
75+
"rest",
76+
"WS",
77+
"ws",
78+
"websocket",
79+
"FS",
80+
"file-system",
81+
"file-based"
82+
],
83+
"repository": {
84+
"type": "git",
85+
"url": "git+https://github.com/nDriaDev/vite-plugin-universal-api"
86+
},
87+
"author": {
88+
"name": "Andrea Cosentino",
89+
"email": "andreacosentino.work@gmail.com",
90+
"url": "https://github.com/nDriaDev/"
91+
},
92+
"readmeFilename": "README.md",
93+
"bugs": {
94+
"url": "https://github.com/nDriaDev/vite-plugin-universal-api/issues"
95+
},
96+
"homepage": "https://github.com/nDriaDev/vite-plugin-universal-api",
97+
"license": "MIT"
98+
}

0 commit comments

Comments
 (0)