-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.99 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
{
"name": "@hypernym/bundler",
"version": "0.14.0",
"author": "Hypernym Studio",
"description": "ESM & TS module bundler.",
"license": "MIT",
"repository": "hypernym-studio/bundler",
"homepage": "https://github.com/hypernym-studio/bundler",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"types": "./dist/types/index.d.cts",
"exports": {
".": {
"types": "./dist/types/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"module",
"bundling",
"javascript",
"typescript",
"hyperbundler",
"declarations",
"bundler",
"builder",
"bundle",
"types",
"build",
"esm",
"dts"
],
"bin": {
"hyperbundler": "./dist/bin/index.mjs"
},
"scripts": {
"build": "bun -b run ./src/bin/index.ts",
"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
}
},
"dependencies": {
"@hypernym/args": "^0.3.0",
"@hypernym/colors": "^1.0.1",
"@hypernym/utils": "^3.4.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/pluginutils": "^5.1.2",
"esbuild": "^0.24.0",
"rollup": "^4.22.4",
"rollup-plugin-dts": "^6.1.1"
},
"devDependencies": {
"@hypernym/eslint-config": "^3.5.0",
"@hypernym/prettier-config": "^3.2.0",
"@hypernym/tsconfig": "^2.4.0",
"@types/node": "^22.6.1",
"eslint": "^9.11.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}