-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.84 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
{
"name": "piying-view",
"version": "2.12.0",
"repository": {
"url": "https://github.com/piying-org/piying-view"
},
"homepage": "https://piying-org.github.io/website/docs/client/intro",
"author": {
"name": "wszgrcy",
"email": "wszgrcy@gmail.com"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"create-view-core": "rimraf projects/view-core && cpx \"projects/view-angular-core/**/*\" projects/view-core && tsx ./script/replace-pkg.ts",
"build:core": "rimraf ./dist && npm run create-view-core && ng build view-core",
"build": "rimraf ./dist && npm run create-view-core && ng build view-angular && ng build view-angular-core && ng build view-core && npm run build -ws --if-present",
"test": "ng test test-view-angular",
"test:vue2-legacy": "npm run test -w packages/vue2-legacy",
"test:vue": "npm run test -w packages/vue",
"test:react": "npm run test -w packages/react",
"test:svelte": "npm run test -w packages/svelte",
"test:solid": "npm run test -w packages/solid",
"test:all": "ng test view-angular --no-watch&& ng test view-angular-core --no-watch&& ng test view-core --no-watch && npm run test -ws --if-present -- --watch=false",
"test:ci": "ng test view-angular --no-watch --no-progress --browsers=ChromeHeadless && ng test view-angular-core --no-watch --no-progress --browsers=ChromeHeadless && ng test view-core --no-watch --no-progress --browsers=ChromeHeadless && npm run test -ws --if-present -- --watch=false",
"coverage": "ng test test-view-angular --code-coverage --no-watch --no-progress --browsers=ChromeHeadless",
"lint": "eslint --fix ./projects && prettier ./projects --write && npm run lint -ws --if-present",
"publish-only": "tsx ./script/change-version.ts && tsx ./script/publish.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md",
"update": "ng update @angular/core@22 @angular/cdk@22 @angular/material@22 @angular/cli@22 --force --allow-dirty"
},
"private": true,
"workspaces": [
"./packages/*"
],
"dependencies": {
"@angular/animations": "22.0.5",
"@angular/cdk": "22.0.3",
"@angular/common": "22.0.5",
"@angular/compiler": "22.0.5",
"@angular/core": "22.0.5",
"@angular/forms": "22.0.5",
"@angular/material": "22.0.3",
"@angular/platform-browser": "22.0.5",
"@angular/platform-browser-dynamic": "22.0.5",
"@hyperjump/json-schema": "^1.16.4",
"@piying/valibot-visit": "^1.3.14",
"clsx": "^2.1.1",
"conventional-changelog": "^7.1.1",
"es-toolkit": "^1.40.0",
"fast-equals": "^5.2.2",
"rfdc": "^1.4.1",
"rxjs": "~7.8.0",
"static-injector": "^7.0.0",
"tslib": "^2.8.1",
"valibot": "1.1.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^22.0.5",
"@angular/cli": "22.0.5",
"@angular/compiler-cli": "22.0.5",
"@cyia/ngx-common": "^20.0.3",
"@eslint/js": "^9.32.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^22.15.30",
"@vitest/browser": "^3.2.4",
"@vitest/eslint-plugin": "^1.1.39",
"@vitest/ui": "^4.1.10",
"autoprefixer": "^10.4.20",
"conventional-changelog-angular": "^8.0.0",
"cpx": "^1.5.0",
"eslint": "^9.32.0",
"eslint-plugin-unused-imports": "^4.1.4",
"execa": "^9.6.0",
"fast-glob": "^3.3.3",
"globals": "^15.14.0",
"istanbul-lib-instrument": "^6.0.3",
"jasmine-core": "~5.4.0",
"jiti": "^2.4.2",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "22.0.1",
"playwright": "^1.54.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"typescript": "6.0.3",
"typescript-eslint": "^8.19.1",
"vite": "^7.0.4",
"vitest": "^4.1.10",
"@vitest/browser-playwright": "4.1.10"
}
}