forked from electron-userland/electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 4.75 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 4.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@electron-builder/monorepo",
"private": true,
"license": "MIT",
"scripts": {
"//": "do not wrap into single quotes - windows doesn't unwrap arg in this case",
"compile": "pnpm ci:test:generate && tsc --build tsconfig.build.json --force",
"compile:watch": "tsc --build tsconfig.build.json --watch",
"typecheck": "tsc --build tsconfig.build.json --noEmit ",
"typecheck:test": "pnpm ci:test:generate && tsc --noEmit -p test/tsconfig.json",
"lint": "eslint packages test/src --ext .ts,.js",
"lint-deps": "node ./scripts/checkDeps.js",
"pretest": "pnpm lint-deps && pnpm lint && pnpm typecheck && pnpm typecheck:test",
"prettier": "prettier 'packages/**/*.{ts,js}' 'website/{docs,scripts,src}/**/*.{ts,js}' 'test/{vitest-scripts,src}/**/*.ts' --write",
"///": "Please see https://github.com/electron-userland/electron-builder/blob/master/CONTRIBUTING.md#run-test-using-cli how to run particular test instead full (and very slow) run",
"test:all": "pnpm compile && pnpm pretest && pnpm ci:test",
"test:linux": "bash docker/run-tests.sh",
"ci:validate": "pnpm pretest && pnpm generate:all",
"ci:test": "tsx test/vitest-scripts/run-vitest.ts",
"ci:test:generate": "tsx test/vitest-scripts/generate-tests.ts",
"ci:test:count": "tsx test/vitest-scripts/smart-shard-count.ts",
"ci:test:fetch-cache": "tsx test/vitest-scripts/fetch-smart-cache.ts",
"ci:test:merge-cache": "tsx test/vitest-scripts/merge-smart-cache.ts",
"ci:test:summary": "tsx test/vitest-scripts/test-summary.ts",
"ci:test:merge-reports": "tsx test/vitest-scripts/merge-reports.ts",
"ci:test:refresh:print": "tsx test/vitest-scripts/refresh-tests.ts print",
"ci:test:refresh:clean": "tsx test/vitest-scripts/refresh-tests.ts clean",
"ci:test:refresh:start": "tsx test/vitest-scripts/refresh-tests.ts start --target any",
"ci:test:refresh:start:mac": "tsx test/vitest-scripts/refresh-tests.ts start --target mac",
"ci:test:refresh:start:windows": "tsx test/vitest-scripts/refresh-tests.ts start --target windows",
"ci:test:refresh:start:linux": "tsx test/vitest-scripts/refresh-tests.ts start --target linux",
"ci:version": "pnpm i && changeset version && node scripts/update-package-version-export.js && pnpm changelog && pnpm compile && pnpm generate:all && git add .",
"ci:publish": "pnpm i && pnpm compile && pnpm publish -r --tag ${NPM_DIST_TAG:-next} --publish-branch ${GITHUB_REF_NAME:-master} < /dev/null && changeset tag",
"docker-images": "bash docker/build.sh",
"docker-push": "bash docker/push.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -t electron-builder@ --pkg packages/electron-builder/package.json && git add CHANGELOG.md",
"generate:changeset": "pnpm changeset",
"generate:schema": "typescript-json-schema packages/app-builder-lib/tsconfig-scheme.json Configuration --out packages/app-builder-lib/scheme.json --noExtraProps --useTypeOfKeyword --strictNullChecks --required && node ./scripts/fix-schema.js",
"generate:all": "pnpm generate:schema && pnpm prettier",
"docs:prebuild": "docker build -t docs-dockerfile -f website/dockerfile .",
"docs:build": "docker run --rm -e RELEASE_TAGS -e DOCS_BASE_URL -v ${PWD}:/app -w /app -v $(pwd)/node-modules-docker-web:/app/node_modules docs-dockerfile bash website/scripts/build-versioned-site.sh",
"docs:preview": "docker run --rm -p 3000:3000 -v ${PWD}/website/build:/app -v $(pwd)/node-modules-docker-web:/app/node_modules docs-dockerfile sh -c 'npx serve /app'",
"docs:dev": "cd website && pnpm build && pnpm start",
"docs:all": "pnpm docs:prebuild && pnpm docs:build"
},
"repository": "https://github.com/electron-userland/electron-builder",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.24.8",
"@changesets/cli": "2.29.7",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.37.0",
"@stylistic/eslint-plugin": "^2.8.0",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.8",
"chalk": "^4.1.2",
"changesets-changelog-clean": "1.3.0",
"conventional-changelog-cli": "5.0.0",
"depcheck": "1.4.7",
"eslint": "9.39.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^10.1.0",
"prettier": "3.7.4",
"tsx": "^4.0.0",
"typedoc": "^0.28.19",
"typescript": "^5.6.2",
"typescript-json-schema": "0.64.0"
},
"engines": {
"node": ">=22.12.0",
"pnpm": ">=11.1.0"
},
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b"
}