-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
{
"name": "@utsubo/events",
"version": "0.1.7",
"author": "Renaud Rohlinger <rohlinger@utsubo.co> (https://utsubo.co)",
"license": "MIT",
"description": "react library for custom events. Based on eventemitter3",
"keywords": [
"react",
"events"
],
"bugs": {
"url": "https://github.com/utsuboco/events/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utsuboco/events"
},
"homepage": "https://github.com/utsuboco/events#readme",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"sideEffects": false,
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"files": [
"dist/*",
"src/*"
],
"scripts": {
"dev": "vite",
"build": "rimraf dist && vite build",
"serve": "vite preview"
},
"devDependencies": {
"@react-three/fiber": "^8.7.4",
"@vitejs/plugin-react": "^2.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"three": "^0.146.0",
"typescript": "^4.8.3",
"vite": "^3.1.1"
},
"dependencies": {
"eventemitter3": "^4.0.7"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}