-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.5 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
{
"author": "rabbitao",
"description": "``` bash $ yarn add @sekai-world/find-live2d-v3 or $ npm install @sekai-world/find-live2d-v3 ``` ## 初始化 ``` typescript import live2d from '@sekai-world/find-live2d-v3' /** 初始化live2d * @param renderConfig?: { efficient: boolean, // 是否使用全效能模式 * fps?: number // 不使用全效模式事, 手动设置帧率. 默认60 * } */ let live2dInstance = new live2D() const live2dmanager = live2dInstance.initialize(renderConfig?: { efficient: boolean, fps?: number}) ```",
"devDependencies": {
"@types/node": "^10.5.5",
"clean-webpack-plugin": "^1.0.1",
"prettier": "^1.16.4",
"ts-lint": "^4.5.1",
"ts-loader": "^5.3.3",
"tslint": "^5.11.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.0.1",
"webpack": "^4.28.1",
"webpack-cli": "^3.3.7"
},
"license": "MIT",
"main": "./dist/index.js",
"name": "@sekai-world/find-live2d-v3",
"private": false,
"scripts": {
"prepublish": "yarn build",
"build": "yarn tsc && yarn types",
"lint": "tslint --fix src/**/*.ts src/**/*.tsx",
"tsc": "tsc",
"types": "tsc -d --emitDeclarationOnly --allowJs false --declarationDir ./dist/types/"
},
"types": "./dist/types/index.d.ts",
"version": "1.6.16",
"repository": {
"type": "git",
"url": "git+https://github.com/Sekai-World/find-live2d-v3.git"
},
"bugs": {
"url": "https://github.com/Sekai-World/find-live2d-v3/issues"
},
"homepage": "https://github.com/Sekai-World/find-live2d-v3#readme"
}