2021-09-24 19:29:09 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hoppscotch/js-sandbox",
|
2022-04-05 10:27:14 +00:00
|
|
|
"version": "2.1.0",
|
2021-09-24 19:29:09 +00:00
|
|
|
"description": "JavaScript sandboxes for running external scripts used by Hoppscotch clients",
|
2023-12-07 10:40:42 +00:00
|
|
|
"type": "module",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"index.d.ts"
|
|
|
|
|
],
|
2022-03-28 08:26:15 +00:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2023-12-07 10:40:42 +00:00
|
|
|
"types": "./dist/types/index.d.ts"
|
|
|
|
|
},
|
|
|
|
|
"./web": {
|
2024-10-23 21:55:55 +00:00
|
|
|
"types": "./dist/web.d.ts",
|
2023-12-07 10:40:42 +00:00
|
|
|
"import": "./dist/web.js",
|
2024-10-23 21:55:55 +00:00
|
|
|
"require": "./dist/web.cjs"
|
2023-12-07 10:40:42 +00:00
|
|
|
},
|
|
|
|
|
"./node": {
|
2024-10-23 21:55:55 +00:00
|
|
|
"types": "./dist/node.d.ts",
|
2023-12-07 10:40:42 +00:00
|
|
|
"import": "./dist/node.js",
|
2024-10-23 21:55:55 +00:00
|
|
|
"require": "./dist/node.cjs"
|
2022-03-28 08:26:15 +00:00
|
|
|
}
|
|
|
|
|
},
|
2023-12-07 10:40:42 +00:00
|
|
|
"types": "./index.d.ts",
|
2021-09-24 19:29:09 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=14",
|
|
|
|
|
"pnpm": ">=3"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2021-11-04 12:53:50 +00:00
|
|
|
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .",
|
|
|
|
|
"lintfix": "eslint --fix --ext .ts,.js --ignore-path .gitignore .",
|
2024-04-19 15:38:46 +00:00
|
|
|
"test": "vitest run",
|
2023-12-07 10:40:42 +00:00
|
|
|
"build": "vite build && tsc --emitDeclarationOnly",
|
2022-05-03 07:09:56 +00:00
|
|
|
"clean": "pnpm tsc --build --clean",
|
2021-11-04 07:17:09 +00:00
|
|
|
"postinstall": "pnpm run build",
|
2021-09-25 16:57:42 +00:00
|
|
|
"prepublish": "pnpm run build",
|
2021-10-05 16:18:10 +00:00
|
|
|
"do-lint": "pnpm run lint",
|
|
|
|
|
"do-lintfix": "pnpm run lintfix",
|
2022-05-03 07:09:56 +00:00
|
|
|
"do-typecheck": "pnpm exec tsc --noEmit",
|
2021-09-25 16:57:42 +00:00
|
|
|
"do-build-prod": "pnpm run build",
|
2021-09-24 19:29:09 +00:00
|
|
|
"do-test": "pnpm run test"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"hoppscotch",
|
|
|
|
|
"sandbox",
|
|
|
|
|
"js-sandbox",
|
|
|
|
|
"apis",
|
|
|
|
|
"test-runner"
|
|
|
|
|
],
|
2021-11-21 14:17:06 +00:00
|
|
|
"author": "Hoppscotch (support@hoppscotch.io)",
|
2021-09-24 19:29:09 +00:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2023-04-09 16:12:25 +00:00
|
|
|
"@hoppscotch/data": "workspace:^",
|
2024-03-07 18:07:48 +00:00
|
|
|
"@types/lodash-es": "4.17.12",
|
2025-10-27 12:19:58 +00:00
|
|
|
"chai": "6.2.0",
|
2025-06-13 05:50:27 +00:00
|
|
|
"faraday-cage": "0.1.0",
|
2025-08-20 17:34:14 +00:00
|
|
|
"fp-ts": "2.16.11",
|
2024-03-07 18:07:48 +00:00
|
|
|
"lodash": "4.17.21",
|
|
|
|
|
"lodash-es": "4.17.21"
|
2021-09-24 19:29:09 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-23 21:55:55 +00:00
|
|
|
"@digitak/esrun": "3.2.26",
|
|
|
|
|
"@relmify/jest-fp-ts": "2.1.1",
|
2025-10-27 12:19:58 +00:00
|
|
|
"@types/chai": "5.2.2",
|
2025-08-20 17:34:14 +00:00
|
|
|
"@types/jest": "30.0.0",
|
|
|
|
|
"@types/lodash": "4.17.20",
|
2025-10-22 13:18:20 +00:00
|
|
|
"@types/node": "24.9.1",
|
2025-09-26 07:56:42 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "8.44.1",
|
|
|
|
|
"@typescript-eslint/parser": "8.44.1",
|
2024-10-23 21:55:55 +00:00
|
|
|
"eslint": "8.57.0",
|
2025-08-20 17:34:14 +00:00
|
|
|
"eslint-config-prettier": "10.1.8",
|
|
|
|
|
"eslint-plugin-prettier": "5.5.4",
|
|
|
|
|
"io-ts": "2.2.22",
|
|
|
|
|
"prettier": "3.6.2",
|
2025-10-22 13:18:20 +00:00
|
|
|
"typescript": "5.9.3",
|
2025-09-24 10:52:31 +00:00
|
|
|
"vite": "6.3.6",
|
2025-08-20 17:34:14 +00:00
|
|
|
"vitest": "3.2.4"
|
2024-04-19 15:38:46 +00:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
2024-10-23 21:55:55 +00:00
|
|
|
"isolated-vm": "5.0.1"
|
2024-04-19 15:38:46 +00:00
|
|
|
},
|
|
|
|
|
"peerDependenciesMeta": {
|
|
|
|
|
"isolated-vm": {
|
|
|
|
|
"optional": true
|
|
|
|
|
}
|
2021-09-24 19:29:09 +00:00
|
|
|
}
|
2024-10-23 21:55:55 +00:00
|
|
|
}
|