-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "text-to-image-video",
"version": "1.0.2",
"description": "可以将文字、图片、视频进行「文本化」",
"author": {
"name": "llq0802",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/llq0802/text-image",
"repository": {
"type": "git",
"url": "https://github.com/llq0802/text-image"
},
"keywords": [
"text-image",
"text-to-image",
"text-to-video",
"text-video",
"image-video",
"文字视频",
"文字图片",
"动态文字"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "dist/text-to-image-video.es.js",
"module": "dist/text-to-image-video.es.js",
"unpkg": "dist/text-to-image-video.umd.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/text-to-image-video.es.js",
"require": "./dist/text-to-image-video.cjs.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"preview": "vite preview"
},
"dependencies": {},
"devDependencies": {
"typescript": "^4.6.4",
"vite": "^3.1.0"
}
}