-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.15 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.15 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
{
"name": "openworkers-dash",
"version": "1.5.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"dev": "ng serve --host 127.0.0.1",
"dev:prod": "ng serve --host 127.0.0.1 --configuration production",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "bun x prettier --write .",
"check": "tsc --noEmit --project tsconfig.app.json",
"compile:worker": "bun build worker.ts --outfile ./dist/openworkers/_worker.js --format esm --target browser",
"deploy:prepare": "ng build && adapter-static ./dist/browser -o ./dist/openworkers && bun compile:worker",
"deploy:dev": "bun deploy:prepare && ow dev workers upload openworkers-dash ./dist/openworkers",
"deploy:local": "bun deploy:prepare && ow local workers upload openworkers-dash ./dist/openworkers",
"deploy:main": "bun deploy:prepare && ow main workers upload openworkers-dash ./dist/openworkers",
"clean": "rimraf dist node_modules .angular"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.1.4",
"@angular/common": "^21.1.4",
"@angular/compiler": "^21.1.4",
"@angular/core": "^21.1.4",
"@angular/forms": "^21.1.4",
"@angular/platform-browser": "^21.1.4",
"@angular/platform-browser-dynamic": "^21.1.4",
"@angular/router": "^21.1.4",
"@materia-ui/ngx-monaco-editor": "^6.0.0",
"@ng-icons/core": "^33.1.0",
"@ng-icons/heroicons": "^33.1.0",
"@openworkers/adapter-static": "^0.1.6",
"@openworkers/croner-wasm": "^0.3.1",
"dexie": "^4.3.0",
"marked": "^17.0.2",
"monaco-editor": "0.55.1",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^21.1.4",
"@angular/cli": "~21.1.4",
"@angular/compiler-cli": "^21.1.4",
"@openworkers/api-types": "^1.5.4",
"@openworkers/workers-types": "^0.1.9",
"@tailwindcss/postcss": "4.1.17",
"@types/jasmine": "6.0.0",
"ansi_up": "^6.0.6",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"rimraf": "^6.1.3",
"tailwindcss": "4.1.17",
"typescript": "5.9.3"
}
}