This repository was archived by the owner on Sep 29, 2022. It is now read-only.
generated from holtwick/zerva-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 KB
/
package.json
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
{
"name": "zerva-vite",
"version": "0.2.7",
"description": "🌱 Zerva and Vite",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/holtwick"
},
"keywords": [
"server",
"typescript",
"event"
],
"author": {
"name": "Dirk Holtwick",
"url": "https://holtwick.de"
},
"license": "MIT",
"type": "module",
"typings": "dist/index.d.ts",
"exports": {
".": {
"browser": "./dist/index.js",
"require": "./dist/index.cjs",
"node": "./dist/index.js",
"default": "./dist/index.js"
}
},
"module": "dist/index.js",
"main": "dist/index.cjs",
"files": [
"dist"
],
"engines": {
"node": ">=14.13.1"
},
"scripts": {
"start": "npm run watch",
"build": "npm run clean && npm run build:tsup",
"build:esm": "tsc -p tsconfig.json",
"build:tsup": "tsup src/index.ts --dts --sourcemap --format esm,cjs",
"clean": "rm -rf dist",
"check": "tsc --noEmit -p tsconfig.json",
"watch": "npm run build:tsup -- --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"vite": "^2.6.14",
"zeed": "^0.7.76",
"zerva": "^0.4.60"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"tsup": "^5.8.0",
"typescript": "^4.5.2"
}
}