-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.33 KB
/
package.json
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": "@exercode/viewer",
"version": "0.0.0-semantically-released",
"description": "A viewer for scoring learner's submissions on Exercode.",
"repository": "github:WillBooster/exercode-viewer",
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"type": "commonjs",
"main": "src/main.cjs",
"scripts": {
"build": "electron-builder --mac --win --publish never",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettify",
"postinstall": "husky || true",
"lint": "eslint --color \"./{scripts,src,tests}/**/*.{cjs,cts,js,jsx,mjs,mts,ts,tsx}\"",
"lint-fix": "yarn lint --fix",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "husky || true",
"prettify": "prettier --cache --color --write \"**/{.*/,}*.{cjs,css,cts,htm,html,js,json,json5,jsonc,jsx,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"",
"start": "electron ."
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"fflate": "0.8.2"
},
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@types/eslint": "8.56.11",
"@types/micromatch": "4.0.9",
"@willbooster/eslint-config-js": "10.3.1",
"@willbooster/prettier-config": "9.1.3",
"conventional-changelog-conventionalcommits": "8.0.0",
"electron": "31.7.6",
"electron-builder": "24.13.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-sort-class-members": "1.21.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"micromatch": "4.0.8",
"pinst": "3.0.0",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"sort-package-json": "2.12.0"
},
"packageManager": "[email protected]",
"build": {
"appId": "com.willbooster.exercode-viewer",
"productName": "ExercodeViewer",
"copyright": "Copyright © 2024 WillBooster Inc.",
"mac": {
"category": "public.app-category.education",
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
}
}
}