-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.27 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.27 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
{
"name": "esroll",
"description": "Build tool combining esbuild and rollup for bundling TypeScript and JavaScript with declaration generation and API documentation",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "opensource@escapace.com"
},
"bugs": "https://github.com/escapace/esroll/issues",
"dependencies": {
"@microsoft/api-extractor": "^7.56.3",
"@microsoft/api-extractor-model": "^7.32.2",
"@microsoft/tsdoc": "^0.16.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/pluginutils": "^5.3.0",
"common-path-prefix": "^3.0.0",
"console-table-printer": "^2.15.0",
"es-toolkit": "^1.44.0",
"esbuild": "^0.27.3",
"find-up": "^8.0.0",
"github-slugger": "^2.0.0",
"is-path-inside": "^4.0.0",
"mdast-squeeze-paragraphs": "^6.0.0",
"mdast-util-find-and-replace": "^3.0.2",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-gfm-autolink-literal": "^2.0.1",
"mdast-util-gfm-strikethrough": "^2.0.0",
"mdast-util-gfm-table": "^2.0.0",
"mdast-util-phrasing": "^4.1.0",
"mdast-util-to-markdown": "^2.1.2",
"mdast-util-to-string": "^4.0.0",
"micromark-extension-gfm-autolink-literal": "^2.1.0",
"micromark-extension-gfm-strikethrough": "^2.1.0",
"micromark-extension-gfm-table": "^2.1.1",
"micromark-util-combine-extensions": "^2.0.1",
"micromark-util-sanitize-uri": "^2.0.1",
"mlly": "^1.8.0",
"pretty-bytes": "^7.1.0",
"rollup": "^4.57.1",
"source-map": "^0.7.6",
"unist-util-visit": "^5.1.0",
"zx": "^8.8.5"
},
"devDependencies": {
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@escapace/pnpm-pack": "0.8.0",
"@escapace/syncpack-configuration": "0.1.0",
"@ls-lint/ls-lint": "2.3.1",
"@types/mdast": "4.0.4",
"@types/node": "25.2.3",
"@vitest/coverage-v8": "4.0.18",
"eslint": "9.39.2",
"eslint-config-escapace": "5.14.0",
"knip": "5.83.1",
"lefthook": "2.1.1",
"prettier": "3.8.1",
"prettier-config-escapace": "1.2.2",
"syncpack": "14.0.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"engines": {
"node": ">=24.13.0",
"pnpm": ">=10.29.2"
},
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/node/index.js"
}
},
"files": [
"lib/node",
"lib/types"
],
"homepage": "https://github.com/escapace/esroll#readme",
"license": "MPL-2.0",
"module": "./lib/node/index.js",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "escapace/esroll",
"scripts": {
"build": "tsx scripts/build.ts",
"format": "syncpack format && eslint --no-warn-ignored --fix && prettier --no-error-on-unmatched-pattern -uw .",
"lint": "ls-lint --config .ls-lint.yaml && knip --no-config-hints && eslint",
"ls-lint": "ls-lint --config .ls-lint.yaml",
"pack": "pnpm-pack package --pack-destination lib",
"prepare": "lefthook install",
"syncpack": "syncpack fix && syncpack format",
"test": "vitest --no-watch --coverage",
"typecheck": "tsc --noEmit",
"update": "ncu --cooldown 7 -p pnpm -u --peer --dep dev,peer,prod,optional && pnpm run syncpack"
},
"sideEffects": false,
"type": "module",
"types": "./lib/types/index.d.ts"
}