-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "zeed",
"type": "module",
"version": "0.26.1",
"description": "🌱 Simple foundation library",
"author": {
"name": "Dirk Holtwick",
"email": "[email protected]",
"url": "https://holtwick.de"
},
"license": "MIT",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/holtwick"
},
"homepage": "https://github.com/holtwick/zeed",
"repository": {
"type": "git",
"url": "git+https://github.com/holtwick/zeed.git"
},
"bugs": {
"url": "https://github.com/holtwick/zeed/issues"
},
"keywords": [
"foundation",
"typescript",
"eventemitter",
"logging",
"kit",
"lib",
"utils",
"zeed"
],
"exports": {
".": {
"types": "./dist/index.all.d.ts",
"node": "./dist/index.node.js",
"default": "./dist/index.browser.js"
}
},
"main": "dist/index.node.cjs",
"module": "dist/index.browser.js",
"types": "dist/index.all.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "nr clean && NODE_ENV=production tsup",
"build:docs": "nlx typedoc --skipErrorChecking ./src/index.all.ts",
"check": "tsc --noEmit --skipLibCheck",
"credits": "nlx credits-cli",
"circles": "nlx madge --circular --summary --orphans --leaves --warning --extensions ts src",
"upload:docs": "nr build:docs && rsync -avz docs/* cy:public_html/zeed.holtwick.de",
"clean": "rm -rf dist",
"coverage": "vitest --run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build && nr circles && nr test:publish",
"start": "nr watch",
"test": "vitest",
"test:browser": "PREVIEW=1 vitest",
"test:firefox": "BROWSER=firefox vitest",
"test:webkit": "BROWSER=webkit vitest",
"test:chromium": "BROWSER=chromium vitest",
"test:publish": "vitest --run",
"watch": "nr build -- --watch src"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8",
"@antfu/ni": "^0.23.0",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/browser": "^2.1.4",
"@vitest/coverage-v8": "^2.1.4",
"esbuild": "^0.24.0",
"eslint": "^9",
"playwright": "^1.48.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3"
}
}
}