-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.71 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
{
"name": "@hypernym/utils",
"version": "3.4.1",
"author": "Hypernym Studio",
"description": "A collection of reusable utilities.",
"license": "MIT",
"repository": "hypernym-studio/utils",
"homepage": "https://github.com/hypernym-studio/utils",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.mts",
"import": "./dist/index.mjs"
},
"./fs": {
"types": "./dist/types/fs/index.d.mts",
"import": "./dist/fs/index.mjs"
}
},
"files": [
"dist"
],
"keywords": [
"javascript",
"typescript",
"collection",
"utilities",
"helpers",
"shared",
"utils",
"types",
"kit",
"js",
"ts"
],
"scripts": {
"dev:browser": "vite playgrounds/browser",
"dev:server": "bun --watch playgrounds/server/main.ts",
"build": "hyperbundler",
"test:types": "vitest --typecheck.only",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"prepublishOnly": "npm run build"
},
"sideEffects": false,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"peerDependencies": {
"@types/node": ">=20.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@hypernym/bundler": "^0.14.0",
"@hypernym/eslint-config": "^3.5.1",
"@hypernym/prettier-config": "^3.2.0",
"@hypernym/tsconfig": "^2.4.0",
"@types/node": "^22.8.6",
"eslint": "^9.14.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}