-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
88 lines (88 loc) · 3.01 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
{
"name": "scena-root",
"version": "0.1.0",
"description": "Scena is a Editor project that represents the timeline of Scene.js",
"private": true,
"scripts": {
"start": "npm run start --prefix ./packages/react-editor",
"build": "npm run build:app --prefix ./packages/react-editor",
"packages:update": "lerna-helper version",
"update-type-consts": "node ./config/update-type-consts.js",
"packages:build": "lerna run build",
"packages:publish": "lerna-helper publish --commit 'chore: publish packages'",
"changelog": "lerna-helper changelog --type all --base @scena/react-editor",
"demo:build": "npm run packages:build && npm run build",
"demo:deploy": "gh-pages -d ./demo --dest=./ --add --remote origin",
"deploy:test": "npm run deploy --prefix ./packages/react-editor",
"deploy": "lerna-helper deploy --base @scena/react-editor",
"release": "lerna-helper release --base @scena/react-editor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daybrush/scena.git"
},
"author": "Daybrush",
"license": "MIT",
"bugs": {
"url": "https://github.com/daybrush/scena/issues"
},
"homepage": "https://github.com/daybrush/scena#readme",
"devDependencies": {
"@daybrush/jsdoc": "^0.4.0",
"@daybrush/release": "^0.5.2",
"cpx": "1.5.0",
"daybrush-jsdoc-template": "^1.7.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": {
"packages": [
"packages/*"
],
"nohoist": [
"**/vue-tsc",
"**/vue-tsc/**",
"**/@vue/*",
"**/@vue/*/**",
"**/vue",
"**/vue/**",
"**/rollup-plugin-vue",
"**/rollup-plugin-vue/**"
]
},
"resolutions": {
"@daybrush/utils": "^1.13.0",
"@types/react": "^16.9.17",
"typescript": "^4.5.0 <4.6.0",
"@egjs/agent": "^2.2.1",
"@egjs/children-differ": "^1.0.1",
"@egjs/list-differ": "^1.0.0",
"@scena/dragscroll": "^1.3.0",
"@scena/matrix": "^1.1.1",
"css-to-mat": "^1.0.3",
"framework-utils": "^1.1.0",
"gesto": "^1.15.0",
"overlap-area": "^1.1.0",
"react-compat-css-styled": "^1.0.9",
"react-css-styled": "^1.0.4"
},
"overrides": {
"@daybrush/utils": "^1.13.0",
"@types/react": "^16.9.17",
"typescript": "^4.5.0 <4.6.0",
"@egjs/agent": "^2.2.1",
"@egjs/children-differ": "^1.0.1",
"@egjs/list-differ": "^1.0.0",
"@scena/dragscroll": "^1.3.0",
"@scena/matrix": "^1.1.1",
"css-to-mat": "^1.0.3",
"framework-utils": "^1.1.0",
"gesto": "^1.15.0",
"overlap-area": "^1.1.0",
"react-compat-css-styled": "^1.0.9",
"react-css-styled": "^1.0.4"
}
}