This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "@js-soft/native-electron",
"version": "1.2.6",
"description": "Native Electron",
"homepage": "https://github.com/js-soft/ts-native-access#readme",
"repository": {
"type": "git",
"url": "https://github.com/js-soft/ts-native-access.git",
"directory": "packages/electron"
},
"license": "MIT",
"author": "j&s-soft GmbH",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"lib-web",
"ui5.yaml"
],
"scripts": {
"build": "tsc && npm run bundle",
"bundle": "npm run bundle:lib && npm run bundle:min",
"bundle:lib": "webpack --stats-all --config webpack.config.js",
"bundle:min": "webpack --stats-all --config webpack.min.config.js",
"license-check": "license-check",
"typedoc": "npx typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts"
},
"dependencies": {
"@js-soft/docdb-access-loki": "^1.0.5",
"@js-soft/logging-abstractions": "^1.0.1",
"@js-soft/native-abstractions": "^1.2.2",
"@js-soft/native-common": "^1.2.4",
"@js-soft/ts-utils": "^2.3.3",
"app-data-folder": "^1.0.0",
"assert": "^2.0.0",
"bson": "^4.7.2",
"dialogs": "^2.0.1",
"electron": "^22.0.2",
"fs-extra": "^11.1.0",
"keytar": "^7.9.0",
"lokijs": "^1.5.12",
"mime": "^3.0.0",
"mime-types": "^2.1.35",
"node-notifier": "^10.0.1",
"os": "^0.1.2",
"pako": "^2.1.0",
"platform-folders": "^0.6.0",
"punycode": "^2.2.0",
"push-receiver": "^2.1.1",
"rimraf": "^4.1.0",
"select-files": "^1.0.1",
"systeminformation": "^5.17.3",
"uuid-by-string": "^4.0.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/mime-types": "^2.1.1",
"@types/rimraf": "^3.0.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}