-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "numara",
"productName": "Numara",
"description": "Numara Calculator",
"version": "7.1.8",
"author": {
"name": "Timur Atalay",
"email": "mail@numara.io",
"url": "https://numara.io"
},
"license": "MIT",
"homepage": "https://github.com/bornova/numara-calculator",
"main": "src/electron/main.js",
"type": "module",
"scripts": {
"prebuild": "npm run prettier && npm run lint",
"build": "node build.js",
"dist": "npm run build && electron-builder",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"publish": "npm run build && electron-builder --x64 --arm64 -p always",
"test": "npm run build && electron .",
"wiki": "node src/misc/wiki.js"
},
"devDependencies": {
"@bornova/colorpicker": "^1.0.1",
"@bornova/deep-diff": "^1.0.0",
"@eslint/js": "^10.0.1",
"@formulajs/formulajs": "^4.6.0",
"codemirror": "^5.65.21",
"electron": "^42.5.1",
"electron-builder": "^26.15.3",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"fs-extra": "^11.3.6",
"function-plot": "^1.25.4",
"globals": "^17.7.0",
"lucide": "^1.22.0",
"luxon": "^3.7.2",
"mathjs": "^15.2.0",
"nerdamer-prime": "^1.4.0",
"prettier": "^3.9.4",
"uikit": "^3.25.19"
},
"dependencies": {
"electron-log": "^5.4.4",
"electron-store": "^11.0.2",
"electron-updater": "^6.8.9"
}
}