-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
169 lines (169 loc) · 6.71 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "tidgi",
"productName": "TidGi",
"description": "Customizable personal knowledge-base with Github as unlimited storage and blogging platform.",
"version": "0.11.3",
"license": "MPL 2.0",
"scripts": {
"start": "pnpm run clean && pnpm run init:git-submodule && pnpm run start:without-clean",
"start:without-clean": "pnpm run build:plugin && cross-env NODE_ENV=development electron-forge start",
"clean": "rimraf -- ./out ./userData-dev ./node_modules/tiddlywiki/plugins/linonetwo && cross-env NODE_ENV=development npx ts-node scripts/developmentMkdir.ts",
"clean:cache": "rimraf -- ./.webpack ./node_modules/.cache",
"start:without-clean:debug-worker": "pnpm run build:plugin && cross-env NODE_ENV=development DEBUG_WORKER=true electron-forge start",
"start:without-clean:debug-main": "pnpm run build:plugin && cross-env NODE_ENV=development DEBUG_MAIN=true electron-forge start",
"build:plugin": "zx scripts/compilePlugins.mjs",
"test": "pnpm run clean && cross-env NODE_ENV=test pnpm run package && pnpm run test:without-package",
"test:without-package": "mkdir -p logs && cross-env NODE_ENV=test cucumber-js",
"package": "pnpm run build:plugin && electron-forge package",
"make:mac-x64": "pnpm run build:plugin && cross-env NODE_ENV=production electron-forge make --platform=darwin --arch=x64",
"make:mac-arm": "pnpm run build:plugin && cross-env NODE_ENV=production electron-forge make --platform=darwin --arch=arm64",
"make:win-x64": "pnpm run build:plugin && cross-env NODE_ENV=production electron-forge make --platform=win32 --arch=x64",
"make:win-ia32": "pnpm run build:plugin && cross-env NODE_ENV=production electron-forge make --platform=win32 --arch=ia32",
"make:win-arm": "pnpm run build:plugin && cross-env NODE_ENV=production electron-forge make --platform=win32 --arch=arm64",
"make:linux-x64": "pnpm run build:plugin && cross-env NODE_ENV=production electron-forge make --platform=linux --arch=x64",
"make:linux-arm": "pnpm run build:plugin && cross-env NODE_ENV=production electron-forge make --platform=linux --arch=arm64",
"init:git-submodule": "git submodule update --recursive && git submodule update --remote",
"lint": "eslint ./src --ext js,ts,tsx,json",
"lint:fix": "eslint ./src --ext js,ts,tsx,json --fix",
"installType": "typesync"
},
"repository": "https://github.com/tiddly-gittly/TidGi-Desktop",
"author": "Lin Onetwo <[email protected]>, Quang Lam <[email protected]>",
"main": ".webpack/main",
"dependencies": {
"ansi-to-html": "^0.7.2",
"app-path": "^4.0.0",
"best-effort-json-parser": "1.1.2",
"bluebird": "3.7.2",
"default-gateway": "6.0.3",
"dugite": "2.7.1",
"electron-dl": "^4.0.0",
"electron-ipc-cat": "2.0.1",
"electron-settings": "5.0.0",
"electron-unhandled": "4.0.1",
"electron-window-state": "5.0.3",
"espree": "^10.3.0",
"exponential-backoff": "^3.1.1",
"fs-extra": "11.2.0",
"git-sync-js": "^2.0.5",
"i18next": "24.0.0",
"i18next-electron-fs-backend": "3.0.2",
"i18next-fs-backend": "2.6.0",
"intercept-stdout": "0.1.2",
"inversify": "6.1.4",
"inversify-inject-decorators": "3.1.0",
"ipaddr.js": "2.2.0",
"jimp": "1.6.0",
"lodash": "4.17.21",
"menubar": "9.5.1",
"nanoid": "^5.0.8",
"new-github-issue-url": "^1.0.0",
"node-fetch": "3.3.2",
"reflect-metadata": "0.2.2",
"registry-js": "1.16.0",
"rotating-file-stream": "^3.2.5",
"rxjs": "7.8.1",
"semver": "7.6.3",
"source-map-support": "0.5.21",
"strip-ansi": "^7.1.0",
"threads": "1.7.0",
"tiddlywiki": "5.3.6",
"type-fest": "4.27.1",
"typescript-styled-is": "^2.1.0",
"v8-compile-cache-lib": "^3.0.1",
"winston": "3.17.0",
"winston-daily-rotate-file": "5.0.0",
"winston-transport": "4.9.0",
"wouter": "^3.3.5",
"zx": "8.2.2"
},
"optionalDependencies": {
"@electron-forge/maker-deb": "7.5.0",
"@electron-forge/maker-flatpak": "7.5.0",
"@electron-forge/maker-rpm": "7.5.0",
"@electron-forge/maker-snap": "7.5.0",
"@electron-forge/maker-squirrel": "7.5.0",
"@electron-forge/maker-zip": "7.5.0",
"electron-squirrel-startup": "1.0.1"
},
"devDependencies": {
"@cucumber/cucumber": "11.1.0",
"@dnd-kit/core": "6.2.0",
"@dnd-kit/modifiers": "8.0.0",
"@dnd-kit/sortable": "9.0.0",
"@dnd-kit/utilities": "3.2.2",
"@electron-forge/cli": "7.5.0",
"@electron-forge/plugin-auto-unpack-natives": "7.5.0",
"@electron-forge/plugin-webpack": "7.5.0",
"@electron/rebuild": "^3.7.1",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^5.15.21",
"@mui/lab": "5.0.0-alpha.170",
"@mui/material": "^5.15.21",
"@mui/styled-engine-sc": "6.0.0-alpha.18",
"@mui/styles": "^5.15.21",
"@mui/x-date-pickers": "^7.8.0",
"@reforged/maker-appimage": "^4.0.2",
"@types/bluebird": "3.5.42",
"@types/chai": "5.0.1",
"@types/circular-dependency-plugin": "5.0.8",
"@types/fs-extra": "11.0.4",
"@types/i18next-fs-backend": "1.1.5",
"@types/intercept-stdout": "0.1.3",
"@types/lodash": "4.17.13",
"@types/node": "22.9.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-helmet": "6.1.11",
"@types/semver": "7.5.8",
"@types/source-map-support": "0.5.10",
"@types/styled-components": "5.1.34",
"@types/webpack-bundle-analyzer": "4.7.0",
"@types/webpack-node-externals": "3.0.4",
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"beautiful-react-hooks": "5.0.2",
"chai": "5.1.2",
"circular-dependency-plugin": "5.2.2",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"css-loader": "6.11.0",
"date-fns": "3.6.0",
"dprint": "^0.47.5",
"electron": "33.2.0",
"esbuild": "^0.24.0",
"esbuild-loader": "^4.2.2",
"eslint-config-tidgi": "1.2.3",
"fork-ts-checker-webpack-plugin": "9.0.2",
"graphql-hooks": "8.0.1",
"json5": "^2.2.3",
"node-loader": "2.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-i18next": "15.1.1",
"rimraf": "^6.0.1",
"simplebar": "6.2.7",
"simplebar-react": "3.2.6",
"style-loader": "4.0.0",
"styled-components": "6.1.13",
"threads-plugin": "1.4.0",
"ts-import-plugin": "3.0.0",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tw5-typed": "^0.5.14",
"typescript": "5.7.2",
"typescript-plugin-styled-components": "3.0.0",
"typesync": "0.13.4",
"webpack-bundle-analyzer": "4.10.2",
"webpack-node-externals": "3.0.0",
"webpack5-externals-plugin": "1.0.4",
"webpackbar": "7.0.0"
},
"pnpm": {
"overrides": {
"node-abi": "latest",
"prebuild-install": "latest"
}
},
"private": false
}