Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

velocityjs

Package Overview
Dependencies
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

velocityjs - npm Package Compare versions

Comparing version 2.1.0-beta to 3.0.0-beta

dist/index.d.mts

26

package.json
{
"name": "velocityjs",
"description": "Velocity Template Language(VTL) for JavaScript",
"version": "2.1.0-beta",
"version": "3.0.0-beta",
"license": "MIT",

@@ -17,13 +17,19 @@ "keywords": [

},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": ["dist", "History.md", "LICENSE", "README.md", "package.json"],
"files": [
"dist",
"History.md",
"LICENSE",
"README.md",
"package.json"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@types/debug": "^4.1.7",

@@ -41,2 +47,3 @@ "@types/jest": "^29.4.0",

"ts-jest": "^29.0.5",
"tsup": "^8.3.0",
"typescript": "^4.9.5"

@@ -48,5 +55,3 @@ },

"cp": "cat src/parse/index.js | sed 's/exports./export const /g' > dist/esm/parse/index.js",
"build": "rm -rf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm --project tsconfig.build.json && npm run cp",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs --project tsconfig.build.json",
"build": "tsup && npm run cp",
"prepublishOnly": "PACKAGE_VERSION=$(node -p -e \"require('./package.json').version\") npm run tag",

@@ -56,2 +61,3 @@ "version": "npm run changelog && git add . && git commit -m 'chore: update history.md' && git push origin",

"changelog": "auto-changelog -p -u",
"check-exports": "attw --pack .",
"ci": "npm run lint && jest --coverage --no-cache"

@@ -58,0 +64,0 @@ },

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