-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "@liqvid/manim",
"version": "0.0.1",
"description": "Liqvid port of ManimCE",
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"files": [
"dist/*"
],
"author": "Yuri Sulyma <yuri@liqvidjs.org>",
"license": "MIT",
"private": false,
"dependencies": {
"@liqvid/cli": "^1.0.2",
"@liqvid/keymap": "^1.0.0",
"@liqvid/playback": "^1.0.0",
"@liqvid/utils": "^1.0.0",
"@react-three/fiber": "^7.0.24",
"liqvid": "^2.0.10",
"rp-katex": "^1.1.1"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-plugin-react": "^7.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"three": "^0.138.3",
"typescript": "^4.6.2"
},
"peerDependencies": {
"@types/node": "^17.0.21",
"@types/react-dom": "^17.0.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"three": "^0.138.3",
"typescript": "^4.6.2"
}
}