-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
112 lines (112 loc) · 3.49 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
104
105
106
107
108
109
110
111
112
{
"name": "scenejs-root",
"version": "0.0.0",
"description": "JavaScript & CSS timeline-based animation library",
"sideEffects": false,
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/daybrush/scenejs.git"
},
"keywords": [
"scene",
"scene.js",
"scenejs",
"keyframes",
"timeline",
"animate",
"animation",
"css",
"requestAnimationFrame",
"motion"
],
"author": "Daybrush",
"license": "MIT",
"bugs": {
"url": "https://github.com/daybrush/scenejs/issues"
},
"homepage": "https://daybrush.com/scenejs",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "npm run build --prefix ./packages/scenejs",
"packages:update": "lerna-helper version",
"packages:build": "npm run build --prefix packages/scenejs && lerna run build --ignore demo",
"packages:publish": "lerna-helper publish --commit 'chore: publish packages' --ignore demo",
"changelog": "lerna-helper changelog --type all --base scenejs",
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
"demo:start": "rollup -c rollup.config.demo.js -w",
"demo:build": "rm -rf ./demo/dist && npm run build --prefix packages/demo && npm run doc",
"demo:deploy": "gh-pages -d ./demo --dest=./ --add --remote origin",
"deploy": "lerna-helper deploy --base scenejs",
"release": "lerna-helper release --base scenejs"
},
"devDependencies": {
"@cfcs/cli": "^0.0.3",
"@daybrush/jsdoc": "^0.4.3",
"@daybrush/release": "^0.7.1",
"cpx": "1.5.0",
"daybrush-jsdoc-template": "^1.8.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": [
"**/@egjs/build-helper",
"**/@egjs/build-helper/**",
"**/rollup-plugin-vue",
"**/rollup-plugin-vue/**",
"**/karma",
"**/karma/**",
"**/karma-*",
"**/karma-*/**",
"**/@types/chai",
"**/@types/chai/**",
"**/@types/karma-chai",
"**/@types/karma-chai/**",
"**/@types/mocha",
"**/@types/mocha/**",
"**/@vue/*",
"**/@vue/*/**",
"**/@cfcs/vue2",
"**/@cfcs/vue2/**",
"**/@cfcs/vue3",
"**/@cfcs/vue3/**",
"**/vue",
"**/vue/**",
"**/@sveltejs/*",
"**/@sveltejs/*/**",
"**/svelte",
"**/svelte/**",
"**/vite",
"**/vite/**"
]
},
"resolutions": {
"@daybrush/builder": "^0.2.0",
"@daybrush/utils": "^1.10.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"typescript": "^4.5.0 <4.6.0",
"@scena/event-emitter": "^1.0.3",
"css-styled": "^1.0.0",
"order-map": "^0.3.1",
"tslib": "^2.4.0"
},
"overrides": {
"@daybrush/builder": "^0.2.0",
"@daybrush/utils": "^1.10.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"typescript": "^4.5.0 <4.6.0",
"@scena/event-emitter": "^1.0.3",
"css-styled": "^1.0.0",
"order-map": "^0.3.1",
"tslib": "^2.4.0"
}
}