-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.71 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.71 KB
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
{
"name": "avatoon",
"description": "A React Three Fiber component for realistic avatar lip-syncing and animations.",
"main": "lib/Avatoon.umd.js",
"module": "lib/Avatoon.es.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/Avatoon.umd.js",
"import": "./lib/Avatoon.es.js"
}
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --project tsconfig.build.json && vite build",
"dev": "tsc --project tsconfig.build.json && vite build --watch",
"clean": "rm -rf ./lib/",
"lint": "eslint ./src/ --fix",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"prepare": "husky install",
"example": "cd example && npm uninstall avatoon && npm install avatoon && npm start"
},
"sideEffects": false,
"keywords": [
"avatoon",
"avatar",
"react-three-fiber",
"lip-sync",
"3d",
"avatar-animation",
"threejs"
],
"repository": {
"type": "git",
"url": "https://github.com/khaledalam/avatoon.git"
},
"repositoryUrl": "https://github.com/khaledalam/avatoon.git",
"author": {
"name": "Khaled Alam",
"email": "[email protected]",
"url": "https://github.com/khaledalam"
},
"license": "MIT",
"peerDependencies": {
"@react-three/drei": ">=9.0.0",
"@react-three/fiber": ">=8.0.0",
"react": ">=18",
"react-dom": ">=18",
"three": ">=0.153.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/react": ">=18.2.14",
"@types/react-dom": ">=18.2.7",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitejs/plugin-react": "^4.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^10.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-visualizer": "^5.14.0",
"semantic-release": "^24.2.3",
"ts-jest": "^29.3.2",
"typescript": "^5.0.4",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.6.1"
},
"version": "1.0.0"
}