-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 3.45 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@fuzdev/fuz_util",
"version": "0.65.2",
"description": "utility belt for JS",
"glyph": "🦕",
"logo": "logo.svg",
"logo_alt": "a green sauropod wearing a brown utility belt",
"tagline": "ancient not extinct",
"license": "MIT",
"homepage": "https://util.fuz.dev/",
"author": {
"name": "Ryan Atkinson",
"email": "mail@ryanatkn.com",
"url": "https://www.ryanatkn.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuzdev/fuz_util.git"
},
"bugs": "https://github.com/fuzdev/fuz_util/issues",
"funding": "https://www.ryanatkn.com/funding",
"scripts": {
"start": "gro dev",
"dev": "gro dev",
"build": "gro build",
"check": "gro check",
"test": "gro test",
"preview": "vite preview",
"deploy": "gro deploy",
"benchmark": "gro run src/benchmarks/run.ts",
"benchmark:save": "gro run src/benchmarks/run.ts --save",
"benchmark:clean": "rm -f src/benchmarks/baseline.json",
"benchmark:slugify": "gro run src/benchmarks/slugify.benchmark.ts",
"benchmark:deep_equal": "gro run src/benchmarks/deep_equal.benchmark.ts",
"benchmark:deep_equal_comparison": "gro run src/benchmarks/deep_equal_comparison.benchmark.ts",
"benchmark:random": "gro run src/benchmarks/random.benchmark.ts",
"benchmark:random_quality": "gro run src/benchmarks/random_quality.ts"
},
"type": "module",
"engines": {
"node": ">=24.14"
},
"keywords": [
"js",
"typescript",
"utilities",
"web"
],
"peerDependencies": {
"@fuzdev/blake3_wasm": "^0.1.0",
"@types/estree": "^1",
"@types/node": "^24",
"esm-env": "^1.2.2",
"svelte": "^5",
"svelte-docinfo": ">=0.2.0",
"zod": "^4.0.14"
},
"peerDependenciesMeta": {
"@fuzdev/blake3_wasm": {
"optional": true
},
"@types/estree": {
"optional": true
},
"@types/node": {
"optional": true
},
"svelte": {
"optional": true
},
"svelte-docinfo": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@fuzdev/blake3_wasm": "^0.1.1",
"@fuzdev/fuz_code": "^0.47.0",
"@fuzdev/fuz_css": "^0.63.2",
"@fuzdev/fuz_ui": "^0.206.6",
"@fuzdev/gro": "^0.206.0",
"@fuzdev/mdz": "^0.3.0",
"@ryanatkn/eslint-config": "^0.12.1",
"@sveltejs/acorn-typescript": "^1.0.9",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.61.1",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/estree": "^1.0.8",
"@types/node": "^24.12.4",
"@webref/css": "^8.2.0",
"dequal": "^2.0.3",
"eslint": "^9.39.1",
"eslint-plugin-svelte": "^3.14.0",
"esm-env": "^1.2.2",
"fast-deep-equal": "^3.1.3",
"magic-string": "^0.30.21",
"svelte": "^5.56.0",
"svelte-check": "^4.4.8",
"svelte-docinfo": "^0.5.4",
"svelte2tsx": "^0.7.55",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.3.6",
"vitest": "^4.0.18",
"zimmerframe": "^1.1.4",
"zod": "^4.3.6"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist",
"src/lib/**/*.ts",
"!src/lib/**/*.test.*",
"!dist/**/*.test.*"
],
"exports": {
"./package.json": "./package.json",
"./*.js": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./*.ts": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
}
}