We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3be3a6 commit ee64623Copy full SHA for ee64623
4 files changed
lib/shadow/bin/npm
@@ -0,0 +1,2 @@
1
+#!/usr/bin/env node
2
+require('../npm-cli.cjs')
lib/shadow/bin/npx
+require('../npx-cli.cjs')
lib/shadow/global.d.ts
@@ -0,0 +1,3 @@
+declare module 'hyperlinker' {
+ export = (msg: string, href: URL['href']) => string
3
+}
package.json
@@ -25,7 +25,10 @@
25
},
26
"files": [
27
"cli.js",
28
- "lib/**/*.js"
+ "lib/**/*.js",
29
+ "lib/**/*.json",
30
+ "lib/**/*.cjs",
31
+ "lib/shadow/**"
32
],
33
"scripts": {
34
"echo": "echo $PATH",
0 commit comments