-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.36 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
{
"name": "@wuespace/telestion-client-common",
"description": "The common components of the Telestion Client",
"license": "MIT",
"version": "0.18.1",
"homepage": "https://telestion.wuespace.de/",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"lint": "eslint",
"check": "tsc --noEmit",
"style": "pnpm -w style",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuespace/telestion-client.git",
"directory": "packages/telestion-client-common"
},
"bugs": {
"url": "https://github.com/wuespace/telestion-client/issues"
},
"author": {
"name": "wuespace",
"email": "[email protected]",
"url": "https://www.wuespace.de/"
},
"contributors": [
{
"name": "Liam Franssen",
"email": "[email protected]",
"url": "https://github.com/leecemin"
},
{
"name": "Pablo Klaschka",
"email": "[email protected]",
"url": "https://github.com/pklaschka"
},
{
"name": "Jan Tischhöfer",
"email": "[email protected]",
"url": "https://github.com/jantischhoefer"
},
{
"name": "Ludwig Richter",
"email": "[email protected]",
"url": "https://github.com/fussel178"
}
],
"dependencies": {
"@adobe/react-spectrum": "^3.24.1",
"@react-aria/focus": "^3.10.1",
"@react-aria/overlays": "^3.12.1",
"@react-spectrum/overlays": "^3.8.0",
"@react-spring/web": "^9.2.3",
"@react-types/shared": "^3.16.0",
"@spectrum-icons/illustrations": "^3.5.3",
"@spectrum-icons/workflow": "^4.0.6",
"@types/react": "^17.0.0",
"@types/react-router": "^5.1.0",
"@wuespace/telestion-client-core": "workspace:^",
"@wuespace/telestion-client-prop-types": "workspace:^",
"@wuespace/telestion-client-types": "workspace:^",
"@wuespace/vertx-event-bus": "workspace:^",
"prop-types": "^15.7.2",
"react-error-boundary": "^3.0.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-use-gesture": "^9.1.3",
"zustand": "4.2.0"
},
"devDependencies": {
"@react-spectrum/provider": "3.9.2",
"@types/prop-types": "15.7.14",
"@types/react-router-dom": "5.3.3",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"peerDependencies": {
"react": ">=16.8"
},
"publishConfig": {
"access": "public"
}
}