Socket
Socket
Sign inDemoInstall

@vuepress/cli

Package Overview
Dependencies
Maintainers
6
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vuepress/cli - npm Package Compare versions

Comparing version 2.0.0-beta.49 to 2.0.0-beta.50-pre

2

bin/vuepress.js
#!/usr/bin/env node
const { cli } = require('../lib')
import { cli } from '../dist/index.js'
cli()
{
"name": "@vuepress/cli",
"version": "2.0.0-beta.49",
"version": "2.0.0-beta.50-pre",
"description": "CLI package of VuePress",

@@ -19,19 +19,25 @@ "keywords": [

"author": "meteorlxy",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js",
"./bin": "./dist/vuepress.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vuepress-cli": "bin/vuepress.js"
"vuepress-cli": "./bin/vuepress.js"
},
"files": [
"bin",
"lib"
"./bin",
"./dist"
],
"dependencies": {
"@vuepress/core": "2.0.0-beta.49",
"@vuepress/shared": "2.0.0-beta.49",
"@vuepress/utils": "2.0.0-beta.49",
"@vuepress/core": "2.0.0-beta.50-pre",
"@vuepress/shared": "2.0.0-beta.50-pre",
"@vuepress/utils": "2.0.0-beta.50-pre",
"cac": "^6.7.12",
"chokidar": "^3.5.3",
"envinfo": "^7.8.1",
"esbuild": "^0.14.49"
"esbuild": "^0.15.3"
},

@@ -44,6 +50,20 @@ "devDependencies": {

},
"tsup": {
"clean": true,
"dts": "./src/index.ts",
"entry": [
"./src/index.ts"
],
"format": [
"esm"
],
"outDir": "./dist",
"sourcemap": false,
"target": "es2020",
"tsconfig": "../tsconfig.dts.json"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"build": "tsup",
"clean": "rimraf dist"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc