-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.46 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.46 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
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
{
"name": "risa",
"version": "0.4.2",
"main": "dist/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\"",
"dev:renderer": "webpack serve --config webpack.config.js --env NODE_ENV=development",
"dev:web": "cross-env WEB_TARGET=web NODE_ENV=development webpack serve --config webpack.config.js",
"dev:main": "webpack --config webpack.config.js --env NODE_ENV=development --watch",
"build": "npm run build:renderer && npm run build:main && npm run build:preload",
"build:main": "cross-env TARGET=main webpack --config webpack.config.js --mode production",
"build:renderer": "webpack --config webpack.config.js --mode production",
"build:preload": "cross-env TARGET=preload webpack --config webpack.config.js --mode production",
"electron": "electron ./dist/main.js",
"start": "npm run build && npm run electron",
"package": "npm run build && electron-builder",
"package:mac": "npm run build && electron-builder --mac",
"package:gh-action": "electron-builder --mac --publish never",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"rsa",
"encryption",
"security",
"crypto",
"desktop"
],
"author": "RiSA Team <noreply@github.com>",
"license": "MIT",
"description": "RiSA - RSA Encryption Desktop Application with Postman-style GUI",
"homepage": "https://github.com/0-ROK/RiSA",
"repository": {
"type": "git",
"url": "https://github.com/0-ROK/RiSA.git"
},
"devDependencies": {
"@electron/notarize": "^3.0.2",
"@types/node": "^24.3.0",
"@types/node-forge": "^1.3.13",
"concurrently": "^9.2.0",
"cross-env": "^10.0.0",
"css-loader": "^7.1.2",
"electron": "^37.3.1",
"electron-builder": "^26.0.12",
"html-webpack-plugin": "^5.6.4",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/node-rsa": "^1.1.4",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"antd": "^5.27.0",
"dayjs": "^1.11.18",
"electron-store": "^10.1.0",
"electron-updater": "^6.6.2",
"node-forge": "^1.3.1",
"node-rsa": "^1.1.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.8.1"
},
"build": {
"appId": "com.risateam.risa",
"productName": "RiSA",
"publish": {
"provider": "github",
"owner": "0-ROK",
"repo": "RiSA"
},
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "assets",
"to": "assets",
"filter": [
"**/*"
]
}
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/icons/RiSA.png",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"artifactName": "${productName}-${version}-mac-${arch}.${ext}"
},
"afterSign": "scripts/notarize.js"
}
}