-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.48 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"private": true,
"name": "mumemo",
"version": "1.0.1",
"license": "MIT",
"main": "./dist/main/main.js",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"build": {
"productName": "mumemo",
"appId": "info.efcl.mumemo",
"asar": true,
"npmRebuild": false,
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSAppleEventsUsageDescription": "Please allow access to script browser applications to detect the current URL when triggering instant lookup."
}
}
},
"electronWebpack": {
"whiteListedModules": [
"codemirror"
]
},
"dependencies": {
"@electron/remote": "^2.0.8",
"@jxa/global-type": "^1.3.4",
"@jxa/run": "^1.3.4",
"abort-controller": "^3.0.0",
"active-win": "^7.6.1",
"codemirror": "^5.58.2",
"dayjs": "^1.9.6",
"electron-log": "^4.4.7",
"electron-store": "^8.0.2",
"electron-win-state": "^1.1.22",
"execa": "^4.1.0",
"flatbush": "^3.3.0",
"gfm-escape": "^0.1.8",
"jimp": "^0.16.1",
"markdown-escapes": "^1.0.4",
"minimist": "^1.2.5",
"opencv-wasm": "4.3.0-0.3.0",
"pureimage": "^0.3.8",
"sanitize-filename": "^1.6.3",
"shortid": "^2.2.15",
"source-map-support": "^0.5.19",
"tmp": "^0.2.1"
},
"devDependencies": {
"@jxa/types": "^1.3.4",
"@types/codemirror": "^5.60.5",
"@types/flatbush": "^3.3.0",
"@types/jimp": "^0.2.28",
"@types/minimist": "^1.2.2",
"@types/ndjson": "^2.0.1",
"@types/node": "^16.11.9",
"@types/shortid": "^0.0.29",
"@types/tmp": "^0.2.2",
"electron": "19.0.4",
"electron-builder": "^23.0.3",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"lint-staged": "^12.0.3",
"meow": "^8.0.0",
"ndjson": "^2.0.0",
"prettier": "^2.4.1",
"ts-node": "~10.5.0",
"typescript": "~4.6.4",
"webpack": "^4.44.2"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}