forked from inferst/evotars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"version": "0.0.7",
"name": "evotars",
"description": "Show animated characters on stream",
"author": "Mikhail Morozov",
"url": "https://github.com/inferst/evotars",
"repository": {
"type": "git",
"url": "https://github.com/inferst/evotars"
},
"keywords": [
"stream",
"avatars",
"chatters"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "tsc --noEmit"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"source": "./src/index.ts",
"main": "./dist/evotars.umd.cjs",
"module": "./dist/evotars.js",
"exports": {
".": {
"import": "./dist/evotars.js",
"require": "./dist/evotars.umd.cjs"
}
},
"type": "module",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/tinycolor2": "^1.4.6",
"typescript": "^5.0.2",
"vite": "^5.2.9",
"vite-plugin-dts": "^3.8.3"
},
"dependencies": {
"@tweenjs/tween.js": "^23.1.1",
"pixi.js": "^7.4.2",
"tinycolor2": "^1.6.0"
}
}