-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.98 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
{
"name": "masonry-angular",
"version": "0.0.1",
"private": true,
"scripts": {
"ng": "ng",
"prebuild": "node scripts/sync-llms.mjs",
"start": "npm run build:lib && ng serve demo",
"build": "npm run build:lib && ng build demo",
"build:lib": "ng build masonry-angular && node scripts/strip-tslib.mjs",
"watch:lib": "ng build masonry-angular --watch",
"test": "ng test masonry-angular --watch=false",
"test:watch": "ng test masonry-angular --watch",
"format": "prettier --write \"projects/**/*.{ts,html,css,json}\"",
"pack:lib": "npm run build:lib && npm pack ./dist/masonry-angular",
"release:dry": "npm test && npm run build:lib && npm publish ./dist/masonry-angular --dry-run",
"release": "npm test && npm run build:lib && npm publish ./dist/masonry-angular",
"size": "npm run build:lib && node scripts/bundle-size.mjs",
"verify:native": "node scripts/verify-native.mjs",
"size:features": "npm run build:lib && node scripts/feature-size.mjs",
"verify:ssr": "npm run build:lib && node scripts/verify-ssr.mjs",
"verify:compat": "node scripts/verify-compat.mjs",
"verify:docs": "npm run build:lib && node scripts/verify-docs.mjs",
"postbuild": "node scripts/inject-meta.mjs",
"verify:deps": "npm run build:lib && node scripts/verify-deps.mjs"
},
"packageManager": "npm@11.12.1",
"engines": {
"node": "^22.22.3 || ^24.15.0 || >=26.0.0"
},
"dependencies": {
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/router": "^22.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^22.1.7",
"@angular/cli": "^22.0.5",
"@angular/compiler-cli": "^22.0.0",
"@angular/platform-server": "^22.1.5",
"jsdom": "^28.0.0",
"ng-packagr": "^22.1.0",
"prettier": "^3.8.1",
"typescript": "~6.0.2",
"vitest": "^4.0.8"
}
}