-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.84 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
{
"name": "cuby-text",
"description": "An open-source knowledge management app.",
"version": "0.0.4",
"main": "dist/main/main.js",
"author": "Vincent Chan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vincentdchan/CubyText.git"
},
"engines": {
"node": "16"
},
"scripts": {
"postinstall": "electron-rebuild better-sqlite3",
"start": "node scripts/build.js",
"build": "node scripts/build.js release",
"build:package": "node scripts/build_asar.js",
"check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@electron/osx-sign": "^1.0.1",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@preact/preset-vite": "^2.3.0",
"@svgr/core": "^6.3.1",
"@types/better-sqlite3": "^7.6.0",
"@types/is-hotkey": "^0.1.7",
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"blocky-common": "^2.10.0",
"blocky-core": "^2.16.1",
"blocky-data": "^2.16.0",
"blocky-preact": "^2.16.0",
"dayjs": "^1.11.5",
"electron": "19.0.10",
"electron-installer-debian": "^3.1.0",
"electron-installer-dmg": "^4.0.0",
"electron-packager": "^16.0.0",
"electron-rebuild": "^3.2.9",
"esbuild": "^0.14.51",
"eslint": "^8.23.0",
"force-graph": "^1.42.13",
"fuse.js": "^6.6.2",
"is-hotkey": "^0.2.0",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"preact": "^10.10.0",
"sass": "^1.54.0",
"typescript": "^4.8.2",
"vite": "^3.0.4"
},
"resolutions": {
"@types/cacheable-request": "^6.0.2",
"@types/responselike": "^1.0.0"
},
"dependencies": {
"better-sqlite3": "^7.6.2",
"log4js": "^6.6.1"
}
}