-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "@zerva/core",
"type": "module",
"version": "0.86.1",
"description": "🌱 Simple event driven server",
"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 dist/main.mjs",
"drun": "ZEED=* ZEED_COLOR=1 zerva demo/zerva.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm test && 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": "ZEED=* vitest --globals --run -r src",
"watch": "tsdown src/index.ts --watch"
},
"dependencies": {
"zeed": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@zerva/bin": "workspace:*",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}