-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.91 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
{
"name": "set-editor",
"author": "Jonathan N Rivera",
"description": "A modern editor to aid in modding Sonic Adventure 2, used to edit and add objects to Sonic Adventure levels.",
"version": "2.0.0",
"copyright": "Google LLC",
"license": "APACHE 2.0",
"main": "main.js",
"build": {
"files": [
"!**/.angular/*",
"!**/.vscode/*",
"!**/node_modules/*"
],
"mac": {
"target": "dmg",
"type": "distribution"
},
"win": {
"target": "portable"
},
"linux": {
"target": "AppImage"
}
},
"scripts": {
"ng": "ng",
"test": "ng test",
"build": "tsc main.ts && ng build",
"electron": "tsc main.ts && ng build && electron .",
"package": "tsc main.ts && ng build && electron-builder build"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.2",
"@angular/cdk": "^15.1.0",
"@angular/common": "^15.1.2",
"@angular/compiler": "^15.1.2",
"@angular/core": "^15.1.2",
"@angular/forms": "^15.1.2",
"@angular/material": "^15.1.0",
"@angular/platform-browser": "^15.1.2",
"@angular/platform-browser-dynamic": "^15.1.2",
"@angular/router": "^15.1.2",
"@fontsource/open-sans": "^4.5.13",
"@fontsource/roboto": "^4.5.8",
"@material-design-icons/font": "^0.12.1",
"@material/fab": "^14.0.0",
"ngx-dropzone": "^3.1.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"typeorm": "^0.3.10",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.3",
"@angular/cli": "~15.1.3",
"@angular/compiler-cli": "^15.1.2",
"@types/jasmine": "~4.0.0",
"electron": "^23.1.0",
"electron-builder": "^24.0.0",
"jasmine-core": "~4.3.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~4.9.4"
}
}