package.json (hoppscotch-2.2.1) | : | package.json (hoppscotch-3.0.0) | ||
---|---|---|---|---|
{ | { | |||
"name": "@hoppscotch/js-sandbox", | "name": "@hoppscotch/js-sandbox", | |||
"version": "1.0.0", | "version": "2.1.0", | |||
"description": "JavaScript sandboxes for running external scripts used by Hopp scotch clients", | "description": "JavaScript sandboxes for running external scripts used by Hopp scotch clients", | |||
"main": "./lib/index.js", | "main": "./lib/index.js", | |||
"module": "./lib/index.mjs", | ||||
"type": "commonjs", | ||||
"exports": { | ||||
".": { | ||||
"require": "./lib/index.js", | ||||
"default": "./lib/index.mjs" | ||||
} | ||||
}, | ||||
"types": "./lib/", | "types": "./lib/", | |||
"type": "module", | ||||
"engines": { | "engines": { | |||
"node": ">=14", | "node": ">=14", | |||
"pnpm": ">=3" | "pnpm": ">=3" | |||
}, | }, | |||
"scripts": { | "scripts": { | |||
"demo": "esrun src/demo.ts", | ||||
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .", | "lint": "eslint --ext .ts,.js --ignore-path .gitignore .", | |||
"lintfix": "eslint --fix --ext .ts,.js --ignore-path .gitignore .", | "lintfix": "eslint --fix --ext .ts,.js --ignore-path .gitignore .", | |||
"test": "npx jest", | "test": "pnpm exec jest", | |||
"build": "npx tsc", | "build": "pnpm exec tsup", | |||
"clean": "npx tsc --build --clean", | "clean": "pnpm tsc --build --clean", | |||
"postinstall": "pnpm run build", | "postinstall": "pnpm run build", | |||
"prepublish": "pnpm run build", | "prepublish": "pnpm run build", | |||
"do-lint": "pnpm run lint", | "do-lint": "pnpm run lint", | |||
"do-lintfix": "pnpm run lintfix", | "do-lintfix": "pnpm run lintfix", | |||
"do-typecheck": "pnpm exec tsc --noEmit", | ||||
"do-build-prod": "pnpm run build", | "do-build-prod": "pnpm run build", | |||
"do-test": "pnpm run test" | "do-test": "pnpm run test" | |||
}, | }, | |||
"keywords": [ | "keywords": [ | |||
"hoppscotch", | "hoppscotch", | |||
"sandbox", | "sandbox", | |||
"js-sandbox", | "js-sandbox", | |||
"apis", | "apis", | |||
"test-runner" | "test-runner" | |||
], | ], | |||
"author": "Hoppscotch (support@hoppscotch.io)", | "author": "Hoppscotch (support@hoppscotch.io)", | |||
"license": "MIT", | "license": "MIT", | |||
"dependencies": { | "dependencies": { | |||
"fp-ts": "^2.11.8", | "@hoppscotch/data": "workspace:^0.4.3", | |||
"fp-ts": "^2.11.10", | ||||
"lodash": "^4.17.21", | "lodash": "^4.17.21", | |||
"quickjs-emscripten": "^0.15.0" | "quickjs-emscripten": "^0.15.0", | |||
"tsup": "^5.12.5" | ||||
}, | }, | |||
"devDependencies": { | "devDependencies": { | |||
"@digitak/esrun": "^3.1.2", | "@digitak/esrun": "^3.1.2", | |||
"@relmify/jest-fp-ts": "^1.1.1", | "@relmify/jest-fp-ts": "^2.0.1", | |||
"@types/jest": "^27.4.0", | "@types/jest": "^27.4.1", | |||
"@types/lodash": "^4.14.178", | "@types/lodash": "^4.14.181", | |||
"@types/node": "^17.0.10", | "@types/node": "^17.0.24", | |||
"@typescript-eslint/eslint-plugin": "^5.10.0", | "@typescript-eslint/eslint-plugin": "^5.19.0", | |||
"@typescript-eslint/parser": "^5.10.0", | "@typescript-eslint/parser": "^5.19.0", | |||
"eslint": "^8.7.0", | "eslint": "^8.13.0", | |||
"eslint-config-prettier": "^8.3.0", | "eslint-config-prettier": "^8.5.0", | |||
"eslint-plugin-prettier": "^4.0.0", | "eslint-plugin-prettier": "^4.0.0", | |||
"io-ts": "^2.2.16", | "io-ts": "^2.2.16", | |||
"jest": "^27.4.7", | "jest": "^27.5.1", | |||
"prettier": "^2.5.1", | "prettier": "^2.6.2", | |||
"ts-jest": "^27.1.3", | "ts-jest": "^27.1.4", | |||
"typescript": "^4.5.5" | "typescript": "^4.6.3" | |||
} | } | |||
} | } | |||
End of changes. 10 change blocks. | ||||
20 lines changed or deleted | 29 lines changed or added |