2021-07-26 20:26:32 +03:00
|
|
|
{
|
2021-08-05 19:45:01 +03:00
|
|
|
"repository": "https://github.com/electron/fiddle-core",
|
|
|
|
"homepage": "https://github.com/electron/fiddle-core#readme",
|
2021-07-26 20:26:32 +03:00
|
|
|
"author": "Charles Kerr <charles@charleskerr.com>",
|
|
|
|
"license": "MIT",
|
2022-10-06 03:28:07 +03:00
|
|
|
"name": "@electron/fiddle-core",
|
|
|
|
"version": "0.0.0-development",
|
2023-01-13 22:23:39 +03:00
|
|
|
"description": "Run fiddles from anywhere, on any Electron release",
|
2022-10-06 22:04:38 +03:00
|
|
|
"main": "dist/index.js",
|
2022-10-04 21:03:43 +03:00
|
|
|
"bin": {
|
2022-10-06 22:04:38 +03:00
|
|
|
"fiddle-core": "dist/index.js"
|
2022-10-04 21:03:43 +03:00
|
|
|
},
|
2021-08-07 17:30:15 +03:00
|
|
|
"files": [
|
2022-10-06 22:04:38 +03:00
|
|
|
"dist",
|
|
|
|
"README.md"
|
2021-08-07 17:30:15 +03:00
|
|
|
],
|
2021-07-26 20:26:32 +03:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc -b",
|
2021-08-07 17:12:21 +03:00
|
|
|
"docs": "api-extractor run --local",
|
2023-02-17 06:49:01 +03:00
|
|
|
"docs:ci": "api-extractor run",
|
2021-07-26 20:26:32 +03:00
|
|
|
"lint": "run-p lint:eslint lint:prettier",
|
|
|
|
"lint:fix": "run-p lint:eslint:fix lint:prettier:fix",
|
2023-02-24 21:57:24 +03:00
|
|
|
"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",
|
2021-07-26 20:26:32 +03:00
|
|
|
"make": "run-p build",
|
2022-10-06 03:28:07 +03:00
|
|
|
"prepublishOnly": "npm run make",
|
2022-10-06 22:04:38 +03:00
|
|
|
"start": "node dist/index.js",
|
2021-07-26 20:26:32 +03:00
|
|
|
"test": "jest",
|
|
|
|
"test:ci": "jest --runInBand --coverage"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-08-17 18:48:56 +03:00
|
|
|
"@electron/get": "^2.0.0",
|
2022-01-13 22:26:43 +03:00
|
|
|
"debug": "^4.3.3",
|
2021-07-26 20:26:32 +03:00
|
|
|
"env-paths": "^2.2.1",
|
|
|
|
"extract-zip": "^2.0.1",
|
|
|
|
"fs-extra": "^10.0.0",
|
|
|
|
"getos": "^3.2.1",
|
|
|
|
"node-fetch": "^2.6.1",
|
2023-05-09 16:18:19 +03:00
|
|
|
"rimraf": "^4.4.1",
|
2021-07-26 20:26:32 +03:00
|
|
|
"semver": "^7.3.5",
|
2022-12-02 01:46:28 +03:00
|
|
|
"simple-git": "^3.5.0"
|
2021-07-26 20:26:32 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-27 05:03:37 +03:00
|
|
|
"@microsoft/api-extractor": "^7.38.3",
|
|
|
|
"@types/debug": "^4.1.12",
|
2022-01-13 22:26:43 +03:00
|
|
|
"@types/fs-extra": "^9.0.13",
|
2023-11-27 05:03:37 +03:00
|
|
|
"@types/getos": "^3.0.4",
|
|
|
|
"@types/jest": "^29.5.10",
|
2022-10-06 22:04:38 +03:00
|
|
|
"@types/node": "^14.14.31",
|
2023-11-27 05:03:37 +03:00
|
|
|
"@types/node-fetch": "^2.6.9",
|
|
|
|
"@types/semver": "^7.5.6",
|
2023-03-23 23:45:06 +03:00
|
|
|
"@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",
|
2023-11-27 05:03:37 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"nock": "^13.3.8",
|
2021-07-26 20:26:32 +03:00
|
|
|
"npm-run-all": "^4.1.5",
|
2022-01-13 22:26:43 +03:00
|
|
|
"prettier": "^2.5.1",
|
2023-11-27 05:03:37 +03:00
|
|
|
"ts-jest": "^29.1.1",
|
2024-10-22 00:18:55 +03:00
|
|
|
"typescript": "^5.6.3"
|
2023-05-09 16:18:19 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=14"
|
2021-07-26 20:26:32 +03:00
|
|
|
}
|
|
|
|
}
|