Skip to content

Commit 8563ac9

Browse files
committed
fix(pkg): add package.json to exports; fix files
1 parent 9a9cb8e commit 8563ac9

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "A framework which wraps around tinybench to provide structure, consistency and convenience to developers creating and maintaining benchmarks",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/boneskull/modestbench.git"
8+
"url": "git+https://github.com/boneskull/modestbench.git"
99
},
1010
"homepage": "https://github.com/boneskull/modestbench#readme",
1111
"bugs": {
@@ -32,13 +32,13 @@
3232
"types": "./dist/cli/index.d.cts",
3333
"import": "./dist/cli/index.js",
3434
"require": "./dist/cli/index.cjs"
35-
}
35+
},
36+
"./package.json": "./package.json"
3637
},
3738
"files": [
3839
"CHANGELOG.md",
3940
"dist",
40-
"README.md",
41-
"LICENSE"
41+
"src"
4242
],
4343
"keywords": [
4444
"benchmark",
@@ -162,7 +162,8 @@
162162
"zshy": {
163163
"exports": {
164164
".": "./src/index.ts",
165-
"./cli": "./src/cli/index.ts"
165+
"./cli": "./src/cli/index.ts",
166+
"./package.json": "./package.json"
166167
}
167168
}
168169
}

0 commit comments

Comments
 (0)