-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "zeed",
"type": "module",
"version": "1.8.1",
"packageManager": "pnpm@10.33.0",
"description": "🌱 Simple foundation library",
"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"
},
"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"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.all.d.mts",
"require": "./dist/index.node.cjs",
"node": "./dist/index.node.mjs",
"default": "./dist/index.browser.mjs"
},
"./eslint": "./src/eslint-defaults.js"
},
"main": "dist/index.node.cjs",
"module": "dist/index.browser.mjs",
"types": "dist/index.all.d.mts",
"files": [
"AGENTS.md",
"LICENSE",
"README.md",
"SECURITY.md",
"dist",
"src"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "nr clean && NODE_ENV=production tsdown",
"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 . --fix",
"start": "nr watch",
"test": "nr check && vitest --run",
"test:browser": "PREVIEW=1 vitest",
"test:firefox": "BROWSER=firefox vitest",
"test:webkit": "BROWSER=webkit vitest",
"test:chromium": "BROWSER=chromium vitest",
"pre:release": "nr lint && nr check",
"test:release": "vitest --run",
"post:release": "nr upload:docs && pnpm publish",
"watch": "nr build -- --watch src"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@antfu/ni": "^30.0.0",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/browser": "^4.1.4",
"@vitest/coverage-v8": "^4.1.4",
"esbuild": "^0.28.0",
"eslint": "^10.2.1",
"playwright": "^1.59.1",
"pnpm": "^10.32.1",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}