{ "repository": "https://github.com/electron/fiddle-core", "homepage": "https://github.com/electron/fiddle-core#readme", "author": "Charles Kerr ", "license": "MIT", "name": "@electron/fiddle-core", "version": "0.0.0-development", "description": "Run fiddles from anywhere, on any Electron release", "main": "dist/index.js", "bin": { "fiddle-core": "dist/index.js" }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsc -b", "docs": "api-extractor run --local", "docs:ci": "api-extractor run", "lint": "run-p lint:eslint lint:prettier", "lint:fix": "run-p lint:eslint:fix lint:prettier:fix", "lint:eslint": "eslint \"./src/**/*.ts\" \"./tests/**/*.ts\"", "lint:eslint:fix": "eslint --fix \"./src/**/*.ts\" \"./tests/**/*.ts\"", "lint:prettier": "prettier --check package.json src/**/*.ts tests/**/*.ts", "lint:prettier:fix": "prettier --write package.json src/**/*.ts tests/**/*.ts", "make": "run-p build", "prepublishOnly": "npm run make", "start": "node dist/index.js", "test": "jest", "test:ci": "jest --runInBand --coverage" }, "dependencies": { "@electron/get": "^2.0.0", "debug": "^4.3.3", "env-paths": "^2.2.1", "extract-zip": "^2.0.1", "fs-extra": "^10.0.0", "getos": "^3.2.1", "node-fetch": "^2.6.1", "rimraf": "^4.4.1", "semver": "^7.3.5", "simple-git": "^3.5.0" }, "devDependencies": { "@microsoft/api-extractor": "^7.38.3", "@types/debug": "^4.1.12", "@types/fs-extra": "^9.0.13", "@types/getos": "^3.0.4", "@types/jest": "^29.5.10", "@types/node": "^14.14.31", "@types/node-fetch": "^2.6.9", "@types/semver": "^7.5.6", "@typescript-eslint/eslint-plugin": "^5.56.0", "@typescript-eslint/parser": "^5.56.0", "eslint": "^8.36.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.7.0", "nock": "^13.3.8", "npm-run-all": "^4.1.5", "prettier": "^2.5.1", "ts-jest": "^29.1.1", "typescript": "^5.6.3" }, "engines": { "node": ">=14" } }