-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.12 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 4.12 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
{
"name": "ayais",
"version": "0.4.6",
"description": "AyAIs (All your AIs) is a cross-platform desktop app with Electron for AI website integration",
"homepage": "https://github.com/marmotz/ayais",
"author": {
"name": "Marmotz",
"email": "contact@marmotz.dev"
},
"main": "./dist/app/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"ng:serve": "ng serve -c dev",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"web:dev": "npm run build",
"web:prod": "npm run build -- -c production",
"electron": "electron",
"electron:serve-tsc": "tsc -p app/tsconfig.json && npm run electron:copy-assets",
"electron:copy-assets": "copyfiles -f \"app/*.png\" dist/app/",
"electron:serve": "wait-on tcp:4213 && npm run electron:serve-tsc && electron . --serve",
"electron:test": "npm run electron:serve-tsc && electron . --test",
"electron:local": "npm run web:dev && electron .",
"electron:build": "rimraf dist && npm run web:prod && electron-builder --config electron-builder.json --publish=never",
"test": "npm run test:angular && npm run test:electron",
"test:angular": "ng test --watch=false",
"test:angular:watch": "ng test",
"test:electron": "vitest run --config vitest.config.ts",
"test:electron:watch": "vitest --config vitest.config.ts",
"test:watch": "npm-run-all -p test:angular:watch test:electron:watch",
"test:e2e": "npm run web:prod && playwright test -c e2e/playwright.config.ts e2e/",
"test:e2e:show-trace": "playwright show-trace e2e/tracing/trace.zip",
"lint": "prettier --check .",
"icon:generate": "cp resources/icon.png app/ && npx electron-icon-builder --input=./resources/icon.png --output=./src/assets",
"update:minor": "npx npm-check-updates -i -t minor",
"update:latest": "npx npm-check-updates -i -t latest",
"type:check": "tsc --noEmit",
"release": "bun scripts/release.ts"
},
"dependencies": {
"@angular/cdk": "21.2.3",
"@angular/common": "21.2.5",
"@angular/compiler": "21.2.5",
"@angular/core": "21.2.5",
"@angular/forms": "21.2.5",
"@angular/language-service": "21.2.5",
"@angular/platform-browser": "21.2.5",
"@angular/platform-browser-dynamic": "21.2.5",
"@angular/router": "21.2.5",
"@fontsource/inter": "5.2.8",
"@fortawesome/angular-fontawesome": "4.0.0",
"@fortawesome/fontawesome-svg-core": "7.2.0",
"@fortawesome/free-brands-svg-icons": "7.2.0",
"@fortawesome/free-solid-svg-icons": "7.2.0",
"@primeuix/themes": "2.0.3",
"@tailwindcss/postcss": "4.2.2",
"compare-versions": "6.1.1",
"postcss": "8.5.8",
"primeng": "21.1.3",
"rxjs": "7.8.2",
"tailwindcss": "4.2.2",
"tailwindcss-primeui": "0.6.1",
"tslib": "2.8.1",
"zone.js": "0.16.1"
},
"devDependencies": {
"@angular/build": "21.2.3",
"@angular/cli": "21.2.3",
"@angular/compiler-cli": "21.2.5",
"@ngx-translate/core": "17.0.0",
"@ngx-translate/http-loader": "17.0.0",
"@playwright/test": "1.58.2",
"@types/node": "22.19.15",
"@vitest/browser-playwright": "4.1.0",
"@vitest/coverage-v8": "4.1.0",
"@vitest/ui": "4.1.0",
"copyfiles": "2.4.1",
"electron": "39.8.3",
"electron-builder": "26.8.2",
"electron-debug": "4.1.0",
"electron-reloader": "1.2.3",
"jsdom": "27.4.0",
"npm-run-all": "4.1.5",
"playwright": "1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "6.1.3",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vitest": "4.1.0",
"wait-on": "9.0.4",
"webdriver-manager": "13.0.2"
},
"engines": {
"node": ">= 22.12.0 || >= 24.0.0",
"typescript": ">= 5.8.0 < 5.9.0"
},
"browserslist": [
"chrome 140"
],
"build": {
"publish": {
"provider": "github",
"owner": "marmotz",
"repo": "AyAIs"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false,
"perMachine": false
}
}
}