-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
103 lines (103 loc) · 3.61 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
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
99
100
101
102
103
{
"name": "infinite-viewer-root",
"private": true,
"description": "Infinite Viewer is Document Viewer Component with infinite scrolling up, down, left and right.",
"repository": {
"type": "git",
"url": "git+https://github.com/daybrush/infinite-viewer.git"
},
"keywords": [
"scroll",
"scroller",
"viewer",
"infinite",
"moveable"
],
"author": "Daybrush",
"license": "MIT",
"bugs": {
"url": "https://github.com/daybrush/infinite-viewer/issues"
},
"homepage": "https://github.com/daybrush/infinite-viewer#readme",
"scripts": {
"build": "npm run build --prefix ./packages/infinite-viewer",
"packages:update": "lerna-helper version && npm run update-type-consts",
"update-type-consts": "node ./config/update-type-consts.js",
"packages:build": "npm run build --prefix packages/infinite-viewer && npm run update-type-consts && lerna run build --ignore ngx-infinite-viewer --ignore infinite-viewer",
"packages:publish": "lerna-helper publish --ignore ngx-infinite-viewer --commit 'chore: publish packages'",
"demo:build": "npm run packages:build && npm run doc",
"changelog": "lerna-helper changelog --type all --base infinite-viewer",
"changelog:root": "lerna-helper changelog --type root --base infinite-viewer",
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
"predeploy": "lerna-helper deploy --base infinite-viewer --pre",
"deploy": "lerna-helper deploy --base infinite-viewer",
"release": "lerna-helper release --base infinite-viewer"
},
"devDependencies": {
"@daybrush/jsdoc": "^0.4.5",
"@daybrush/release": "^0.7.0",
"cpx": "1.5.0",
"daybrush-jsdoc-template": "^1.9.0",
"gh-pages": "^2.0.1",
"intercept-stdout": "0.1.2",
"lerna": "^4.0.0",
"lerna-changelog": "2.2.0",
"typescript": "^4.5.0 <4.6.0"
},
"workspaces": {
"nohoist": [
"**/@daybrush/builder",
"**/@daybrush/builder/**",
"**/rollup-plugin-vue",
"**/rollup-plugin-vue/**",
"**/karma",
"**/karma/**",
"**/karma-*",
"**/karma-*/**",
"**/@tyoes/chai",
"**/@tyoes/chai/**",
"**/@types/karma-chai",
"**/@types/karma-chai/**",
"**/@types/mocha",
"**/@types/mocha/**",
"**/@vue/*",
"**/@vue/*/**",
"**/vue",
"**/vue/**"
],
"packages": [
"packages/*",
"packages/ngx-infinite-viewer/projects/ngx-infinite-viewer"
]
},
"resolutions": {
"@daybrush/utils": "^1.7.1",
"@types/react": "^16.9.17",
"typescript": "^4.5.0 <4.6.0",
"@egjs/agent": "^2.2.1",
"@egjs/children-differ": "^1.0.1",
"@scena/dragscroll": "^1.2.0",
"@scena/matrix": "^1.1.1",
"css-to-mat": "^1.0.3",
"framework-utils": "^1.1.0",
"gesto": "^1.12.2",
"overlap-area": "^1.1.0",
"tslib": "^2.3.0",
"css-styled": "^1.0.7"
},
"overrides": {
"@daybrush/utils": "^1.7.1",
"@types/react": "^16.9.17",
"typescript": "^4.5.0 <4.6.0",
"@egjs/agent": "^2.2.1",
"@egjs/children-differ": "^1.0.1",
"@scena/dragscroll": "^1.2.0",
"@scena/matrix": "^1.1.1",
"css-to-mat": "^1.0.3",
"framework-utils": "^1.1.0",
"gesto": "^1.12.2",
"overlap-area": "^1.1.0",
"tslib": "^2.3.0",
"css-styled": "^1.0.7"
}
}