-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 KB
/
package.json
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
{
"name": "@rattus-orm/angular-rxjs",
"description": "ORM for your JS/TS apps: Angular RxJS bindings",
"homepage": "https://orm.rattus.dev/",
"author": "Lyoha Plotinka",
"license": "MIT",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/lyohaplotinka/rattus-orm.git"
},
"bugs": {
"url": "https://github.com/lyohaplotinka/rattus-orm/issues"
},
"keywords": ["orm", "rattus", "angular", "rxjs", "typescript", "javascript"],
"version": "0.2.3",
"type": "module",
"scripts": {
"ng": "ng",
"build": "yarn install && ng build",
"clean": "rm -rf dist && rm -rf node_modules && rm -rf .angular",
"test": "run -T vitest run",
"typecheck": "bash -c 'run -T tsc -p tsconfig.json --noEmit'"
},
"devDependencies": {
"@analogjs/platform": "^1.13.0",
"@analogjs/vite-plugin-angular": "^1.13.0",
"@angular-devkit/build-angular": "^19.1.6",
"@angular/build": "^19.1.6",
"@angular/cli": "^19.1.6",
"@angular/common": "^19.1.5",
"@angular/compiler": "^19.1.5",
"@angular/compiler-cli": "^19.1.5",
"@angular/core": "^19.1.5",
"@angular/platform-browser": "^19.1.5",
"@angular/platform-browser-dynamic": "^19.1.5",
"@ngtools/webpack": "^19.1.6",
"@nx/vite": "^20.4.2",
"@rattus-orm/core": "workspace:^",
"@rattus-orm/plugin-zod-validate": "workspace:^",
"@types/jsdom": "^21.1.7",
"jsdom": "^24.1.3",
"ng-packagr": "^19.1.2",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"typescript": "~5.7.3",
"zone.js": "~0.15.0"
},
"peerDependencies": {
"@angular/common": ">=17.0.0",
"@angular/core": ">=17.0.0",
"@rattus-orm/core": "^0.4.1"
},
"sideEffects": false,
"rattusMeta": {
"title": "Angular + RxJS",
"publishDir": "./dist"
}
}