-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.95 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
{
"name": "root",
"private": true,
"scripts": {
"packages": "npm run packages:update && npm run packages:build && npm run packages:publish",
"packages:update": "lerna-helper version",
"packages:build": "npm run build --prefix packages/keycon && lerna run build --ignore keycon --ignore docs --stream",
"packages:publish": "lerna-helper publish --commit 'chore: update packages versions'",
"changelog": "lerna-helper changelog --type all --base keycon",
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
"deploy": "lerna-helper deploy --base keycon --remote master",
"release": "lerna-helper release --base keycon --remote origin --branch master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daybrush/keycon.git"
},
"author": "Daybrush",
"license": "MIT",
"bugs": {
"url": "https://github.com/daybrush/keycon/issues"
},
"homepage": "https://daybrush.com/keycon/",
"devDependencies": {
"@daybrush/jsdoc": "^0.4.1",
"@daybrush/release": "^0.7.0",
"daybrush-jsdoc-template": "^1.7.0",
"lerna": "^4.0.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/*/**",
"**/@cfcs/vue2",
"**/@cfcs/vue2/**",
"**/@cfcs/vue3",
"**/@cfcs/vue3/**",
"**/vue",
"**/vue/**",
"**/vue-loader",
"**/vue-loader/**"
],
"packages": [
"packages/*"
]
},
"resolutions": {
"@daybrush/utils": "^1.7.1",
"@types/react": "^16.9.17",
"typescript": "^4.5.0 <4.6.0",
"@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",
"react-compat-css-styled": "^1.0.8",
"react-css-styled": "^1.0.3",
"tslib": "^2.3.0",
"@cfcs/core": "^0.0.6"
},
"overrides": {
"@daybrush/utils": "^1.7.1",
"@types/react": "^16.9.17",
"typescript": "^4.5.0 <4.6.0",
"@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",
"react-compat-css-styled": "^1.0.8",
"react-css-styled": "^1.0.3",
"tslib": "^2.3.0",
"@cfcs/core": "^0.0.6"
}
}