-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "numara",
"productName": "Numara",
"description": "Numara Calculator",
"version": "5.7.2",
"author": {
"name": "Timur Atalay",
"email": "mail@numara.io",
"url": "https://numara.io"
},
"license": "MIT",
"homepage": "https://github.com/bornova/numara-calculator",
"main": "src/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": {
"@eslint/js": "^9.15.0",
"@formulajs/formulajs": "^4.4.8",
"@melloware/coloris": "^0.24.0",
"codemirror": "^5.65.18",
"deep-diff": "^1.0.2",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"fs-extra": "^11.2.0",
"function-plot": "^1.25.1",
"lucide": "^0.460.0",
"luxon": "^3.5.0",
"mathjs": "^14.0.0",
"prettier": "^3.3.3",
"tinykeys": "^3.0.0",
"uikit": "^3.21.16"
},
"dependencies": {
"electron-log": "^5.2.3",
"electron-store": "^10.0.0",
"electron-updater": "^6.3.9"
}
}