-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.33 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
{
"name": "chatgpt-api",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0",
"build": "ng build --output-path dist/ --base-href . && cp _config.yml dist/_config.yml && cp CNAME dist/CNAME && cp LICENSE dist/LICENSE && cp .well-known/ dist/.well-known/ -R",
"deploy": "git push origin `git subtree split --prefix dist master`:gh-pages --force",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.12",
"@angular/cdk": "^19.2.17",
"@angular/common": "^19.2.12",
"@angular/compiler": "^19.2.12",
"@angular/core": "^19.2.12",
"@angular/forms": "^19.2.12",
"@angular/material": "^19.2.17",
"@angular/material-experimental": "^19.2.17",
"@angular/platform-browser": "^19.2.12",
"@angular/platform-browser-dynamic": "^19.2.12",
"@angular/router": "^19.2.12",
"@angular/service-worker": "^19.2.12",
"@anthropic-ai/sdk": "^0.52.0",
"@capacitor/camera": "^7.0.1",
"@capacitor/core": "^7.2.0",
"@google/generative-ai": "^0.24.1",
"@mistralai/mistralai": "^1.6.1",
"@types/recordrtc": "^5.6.14",
"bootstrap": "^5.3.6",
"bootstrap-icons": "^1.13.1",
"clipboard": "^2.0.11",
"glob": "^11.0.2",
"highlight.js": "^11.11.1",
"highlightjs-copy": "^1.0.6",
"openai": "^4.103.0",
"qrcode": "^1.5.4",
"recordrtc": "^5.6.2",
"rxjs": "~7.8.2",
"showdown": "^2.1.0",
"tslib": "^2.8.1",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.13",
"@angular-eslint/eslint-plugin": "^19.4.0",
"@angular-eslint/eslint-plugin-template": "^19.4.0",
"@angular/cli": "~19.2.13",
"@angular/compiler-cli": "^19.2.12",
"@types/jasmine": "~5.1.8",
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jasmine-core": "~5.7.1",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "^3.5.3",
"prettier-eslint": "^16.4.2",
"typescript": "~5.8.3"
}
}