forked from Pseudo-Corp/SynergismOfficial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.13 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.13 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
{
"name": "synergismofficial",
"version": "4.1.1",
"description": "",
"main": "dist/bundle.js",
"engines": {
"node": ">=22.21.0"
},
"dependencies": {
"@paypal/paypal-js": "^8.2.0",
"@ungap/custom-elements": "^1.3.0",
"break_infinity.js": "^2.0.0",
"clipboard": "^2.0.11",
"cookie": "^1.1.1",
"discord-rpc": "^4.0.1",
"dompurify": "^3.2.7",
"electron-store": "^11.0.2",
"electron-window-state": "^5.0.3",
"fast-mersenne-twister": "^1.0.3",
"i18next": "^22.4.9",
"lz-string": "^1.4.4",
"mime-types": "^3.0.2",
"rfdc": "^1.4.1",
"steamworks.js": "^0.4.0",
"worker-timers": "^7.0.53",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cloudflare-turnstile": "^0.2.2",
"@types/conf": "^2.1.0",
"@types/discord-rpc": "^4.0.10",
"@types/lodash.clonedeepwith": "^4.5.9",
"@types/lz-string": "^1.3.34",
"@types/mime-types": "^3.0.1",
"concurrently": "^9.2.1",
"deep-object-diff": "^1.1.9",
"dprint": "^0.48.0",
"electron": "^39.2.7",
"electron-builder": "26.0.12",
"esbuild": "^0.25.5",
"htmlhint": "^1.1.4",
"husky": "^8.0.3",
"msw": "2.7.5",
"oxlint": "^1.53.0",
"oxlint-tsgolint": "^0.16.0",
"shx": "^0.4.0",
"stylelint": "^14.8.2",
"stylelint-config-standard": "^25.0.0",
"typescript": "^5.9.3"
},
"scripts": {
"live-server": "npx live-server --port=3000 -q",
"dev": "concurrently \"npm run watch:esbuild\" \"npm run live-server\"",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "npx dprint fmt",
"format": "npx dprint fmt",
"csslint": "npx stylelint Synergism.css",
"csslint:fix": "npx stylelint Synergism.css --fix",
"htmllint": "npx htmlhint index.html",
"build:esbuild": "npx esbuild src/Synergism.ts --bundle --minify --target=\"chrome58,firefox57,safari11,edge29\" --outfile=\"./dist/out.js\" --define:PROD=true",
"watch:esbuild": "node --run msw:init && npx esbuild src/Synergism.ts --bundle --minify --target=\"chrome58,firefox57,safari11,edge29\" --outfile=\"./dist/out.js\" --watch --sourcemap --define:PROD=false --define:DEV=true",
"check:tsc": "npx -p typescript tsc",
"watch:tsc": "npx -p typescript tsc --watch",
"prepare": "husky install",
"cloudflare:build": "node scripts/needsBundling.js || npm run build:esbuild",
"msw:init": "npx -y msw init . --save",
"check-circular": "madge --circular src/",
"electron:cp": "shx rm -rf ./dist && shx mkdir dist && shx cp -r Pictures dist/ && shx cp -r translations dist/ && shx cp index.html Synergism.css favicon.ico dist/",
"electron:build:assets": "npm run electron:cp && npm run build:esbuild -- --define:PLATFORM=\\\"steam\\\" --outfile=\"./dist/dist/out.js\"",
"electron:watch": "npx esbuild src/Synergism.ts --bundle --target=\"chrome58,firefox57,safari11,edge29\" --outfile=\"./dist/dist/out.js\" --watch --sourcemap --define:PROD=false --define:DEV=true --define:PLATFORM=\\\"steam\\\"",
"electron:dev": "npm run electron:cp && npm run build:esbuild -- --define:PLATFORM=\\\"steam\\\" --outfile=\"./dist/dist/out.js\" && npx -y msw init dist --save && electron electron/main.ts",
"electron:build": "npm run electron:build:assets && electron-builder --win --mac --linux",
"electron:build:win": "npm run electron:build:assets && electron-builder --win",
"electron:build:mac": "npm run electron:build:assets && electron-builder --mac",
"electron:build:linux": "npm run electron:build:assets && electron-builder --linux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pseudo-Corp/SynergismOfficial.git"
},
"keywords": [
"synergism",
"synergismofficial"
],
"author": "Platonic (Kevin Bunn)",
"maintainers": [
{
"email": "pseudonian@gmail.com",
"name": "Kevin Bunn"
},
{
"email": "maitken033380023@gmail.com",
"name": "Matthew Aitken"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Pseudo-Corp/SynergismOfficial/issues"
},
"homepage": "https://github.com/Pseudo-Corp/SynergismOfficial#readme",
"msw": {
"workerDirectory": [
".",
"",
"dist"
]
}
}