-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@spaceagetv/electron-progress-window",
"version": "2.1.6",
"description": "Display single or multiple progress bars in an Electron app",
"repository": {
"type": "git",
"url": "git+https://github.com/spaceagetv/electron-progress-window.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm && npm run post-build",
"build:docs": "npm run build && npm run docs",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts . --fix",
"type-check": "tsc --noEmit",
"semantic-release": "semantic-release",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"post-build": "node post-build.js",
"docs:extract": "api-extractor run --local",
"docs:generate": "api-documenter markdown --input-folder temp --output-folder docs",
"docs": "npm run docs:extract && npm run docs:generate"
},
"keywords": [
"electron",
"progress",
"progress-bar",
"progressbar",
"window",
"dialog",
"typescript"
],
"author": "Jeff Robbins",
"license": "MIT",
"engines": {
"node": ">=20.8.1"
},
"peerDependencies": {
"electron": "*"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.22.6",
"@microsoft/api-extractor": "^7.35.0",
"@playwright/test": "^1.57.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitest/coverage-istanbul": "^4.0.17",
"@vitest/coverage-v8": "^4.0.17",
"conventional-changelog-conventionalcommits": "^9.1.0",
"electron": "^40.0.0",
"electron-mocks": "^1.1.3",
"electron-playwright-helpers": "^2.0.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"ncp": "^2.0.0",
"prettier": "^2.8.8",
"semantic-release": "^24.2.9",
"sinon": "^15.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vitest": "^4.0.17"
},
"publishConfig": {
"access": "public"
}
}