-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.67 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.67 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
{
"name": "@hypernym/utils",
"version": "3.4.9",
"author": "Hypernym Studio",
"description": "A collection of reusable utilities.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hypernym-studio/utils.git"
},
"homepage": "https://github.com/hypernym-studio/utils",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./fs": {
"types": "./dist/fs/index.d.ts",
"import": "./dist/fs/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"hyper",
"hypernym",
"javascript",
"typescript",
"collection",
"utilities",
"shareable",
"helpers",
"shared",
"utils",
"types",
"kit",
"js",
"ts"
],
"scripts": {
"dev:browser": "vite playgrounds/browser",
"dev:server": "bun --watch playgrounds/server/main.ts",
"build": "hyperbundler",
"test": "vitest -c test/vitest.config.ts",
"lint": "oxlint",
"format": "oxfmt",
"generate:changelog": "hyperchangelog",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"@types/node": ">=20.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@hypernym/bundler": "^0.32.2",
"@hypernym/changelog": "^0.3.0",
"@hypernym/oxlint-config": "^0.1.0",
"@hypernym/tsconfig": "^2.7.0",
"@types/node": "^25.5.1",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}