-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.73 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@zerva/vite",
"type": "module",
"version": "0.86.2",
"description": "🌱 Zerva and Vite",
"author": {
"name": "Dirk Holtwick",
"email": "dirk.holtwick@gmail.com",
"url": "https://holtwick.de"
},
"license": "MIT",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/holtwick"
},
"keywords": [
"server",
"typescript",
"event"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "pnpm run clean && pnpm run build:tsdown",
"build:tsdown": "tsdown src/index.ts",
"check": "vue-tsc --noEmit -p ./tsconfig.json",
"clean": "rm -rf dist www",
"dbld": "zerva demo/zerva.ts --build && ZEED=* ZEED_COLOR=1 node --enable-source-maps dist/main.mjs",
"drun": "ZEED=* ZEED_COLOR=1 zerva demo/zerva.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm run build",
"release": "pnpm test && pnpm version patch && pnpm build && pnpm publish --no-git-checks",
"reset": "rm -rf node_modules pnpm-lock.yaml dist dist_www www",
"start": "pnpm run watch",
"test": "vitest run",
"test:watch": "vitest",
"watch": "tsdown src/index.ts --watch"
},
"peerDependencies": {
"vite": ">=3.0.0"
},
"dependencies": {
"@zerva/core": "workspace:*",
"@zerva/http": "workspace:*",
"zeed": "^1.3.1"
},
"devDependencies": {
"@zerva/bin": "workspace:*",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}