-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.48 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.48 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": "angular-split",
"version": "20.0.0",
"description": "Angular UI library to split views and allow dragging to resize areas using CSS grid layout.",
"author": "beeman",
"scripts": {
"release": "release-it major"
},
"release-it": {
"hooks": {
"after:bump": "cp ./CHANGELOG.md ../../CHANGELOG.md"
},
"requireCleanWorkingDir": false,
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
},
"infile": "CHANGELOG.md"
}
},
"git": false,
"github": {
"release": true,
"preRelease": true,
"releaseName": "${version}",
"draft": false,
"tokenRef": "GITHUB_TOKEN"
},
"npm": {
"publish": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/angular-split/angular-split.git"
},
"bugs": {
"url": "https://github.com/angular-split/angular-split/issues"
},
"maintainers": [
{
"email": "[email protected]",
"name": "Bram Borggreve",
"url": "https://github.com/beeman"
}
],
"homepage": "https://angular-split.github.io",
"keywords": [
"angular",
"split",
"split-pane",
"split-area",
"grid"
],
"license": "Apache-2.0",
"exports": {
"./theme": {
"css": "./theme.css"
}
},
"peerDependencies": {
"@angular/common": ">=19.0.0",
"@angular/core": ">=19.0.0",
"rxjs": ">=7.0.0"
},
"dependencies": {
"tslib": "^2.0.0"
}
}