@laplace.live/pixijs-live2d 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +68 -0
- package/dist/extra.d.ts +16 -0
- package/dist/extra.js +75 -0
- package/dist/extra.js.map +1 -0
- package/dist/index.d.ts +7023 -0
- package/dist/index.js +16076 -0
- package/dist/index.js.map +1 -0
- package/dist/rolldown-runtime-D7D4PA-g.js +13 -0
- package/package.json +66 -0
- package/vendor/cubism/LICENSE.md +45 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __exportAll = (all, no_symbols) => {
|
|
4
|
+
let target = {};
|
|
5
|
+
for (var name in all) __defProp(target, name, {
|
|
6
|
+
get: all[name],
|
|
7
|
+
enumerable: true
|
|
8
|
+
});
|
|
9
|
+
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
10
|
+
return target;
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { __exportAll as t };
|
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@laplace.live/pixijs-live2d",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "PixiJS v8 Live2D engine — Cubism 3/4/5, lip sync, parallel motions",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"author": "LAPLACE <s@laplace.live>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/laplace-live/persona",
|
|
11
|
+
"directory": "packages/pixijs-live2d"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://laplace.live/persona",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"live2d",
|
|
16
|
+
"cubism",
|
|
17
|
+
"pixi",
|
|
18
|
+
"pixijs",
|
|
19
|
+
"vtuber",
|
|
20
|
+
"2d-animation"
|
|
21
|
+
],
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"import": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./extra": {
|
|
28
|
+
"types": "./dist/extra.d.ts",
|
|
29
|
+
"import": "./dist/extra.js"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"vendor/cubism/LICENSE.md"
|
|
36
|
+
],
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public",
|
|
39
|
+
"provenance": true
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@pixi/sound": "^6.0.1",
|
|
43
|
+
"pixi.js": "^8.13.1"
|
|
44
|
+
},
|
|
45
|
+
"peerDependenciesMeta": {
|
|
46
|
+
"@pixi/sound": {
|
|
47
|
+
"optional": true
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@pixi/sound": "^6.0.1",
|
|
52
|
+
"@types/node": "^22.19.0",
|
|
53
|
+
"pixi.js": "^8.19.0",
|
|
54
|
+
"tsdown": "^0.22.14",
|
|
55
|
+
"tsx": "^4.23.12",
|
|
56
|
+
"typescript": "~6.0.3",
|
|
57
|
+
"vitest": "^4.1.10"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsdown",
|
|
61
|
+
"typecheck": "tsx scripts/typecheck-src.ts",
|
|
62
|
+
"test": "vitest run",
|
|
63
|
+
"sync-cubism": "tsx scripts/sync-cubism-framework.ts",
|
|
64
|
+
"types": "tsdown && node -e \"const fs = require('node:fs'); fs.copyFileSync('dist/index.d.ts', 'types/index.d.ts'); fs.copyFileSync('dist/extra.d.ts', 'types/extra.d.ts')\""
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
## Definitions
|
|
2
|
+
|
|
3
|
+
### Live2D Cubism Components
|
|
4
|
+
|
|
5
|
+
Cubism Web Framework is included in Live2D Cubism Components.
|
|
6
|
+
|
|
7
|
+
Cubism Web Framework は Live2D Cubism Components に含まれます。
|
|
8
|
+
|
|
9
|
+
Cubism Web Framework 包括在 Live2D Cubism Components 中。
|
|
10
|
+
|
|
11
|
+
## Cubism SDK Release License
|
|
12
|
+
|
|
13
|
+
*All business* users must obtain a Cubism SDK Release License. "Business" means an entity with the annual gross revenue more than ten million (10,000,000) JPY for the most recent fiscal year.
|
|
14
|
+
|
|
15
|
+
* [Cubism SDK Release License](https://www.live2d.com/en/download/cubism-sdk/release-license/)
|
|
16
|
+
|
|
17
|
+
直近会計年度の売上高が 1000 万円以上の事業者様がご利用になる場合は、Cubism SDK リリースライセンス(出版許諾契約)に同意していただく必要がございます。
|
|
18
|
+
|
|
19
|
+
* [Cubism SDK リリースライセンス](https://www.live2d.com/ja/download/cubism-sdk/release-license/)
|
|
20
|
+
|
|
21
|
+
如果您的企业在最近一个会计年度的销售额达到或超过1000万日元,您必须得到Cubism SDK的出版授权许可(出版许可协议)。
|
|
22
|
+
|
|
23
|
+
* [Cubism SDK发行许可证](https://www.live2d.com/zh-CHS/download/cubism-sdk/release-license/)
|
|
24
|
+
|
|
25
|
+
## Live2D Open Software License
|
|
26
|
+
|
|
27
|
+
Live2D Cubism Components is available under Live2D Open Software License.
|
|
28
|
+
|
|
29
|
+
* [Live2D Open Software License](https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html)
|
|
30
|
+
* [Live2D Open Software 使用許諾契約書](https://www.live2d.com/eula/live2d-open-software-license-agreement_jp.html)
|
|
31
|
+
* [Live2D Open Software 使用授权协议](https://www.live2d.com/eula/live2d-open-software-license-agreement_cn.html)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## Live2D Proprietary Software License
|
|
35
|
+
|
|
36
|
+
Live2D Cubism Core is available under Live2D Proprietary Software License.
|
|
37
|
+
|
|
38
|
+
* [Live2D Proprietary Software License Agreement](https://www.live2d.com/eula/live2d-proprietary-software-license-agreement_en.html)
|
|
39
|
+
* [Live2D Proprietary Software 使用許諾契約書](https://www.live2d.com/eula/live2d-proprietary-software-license-agreement_jp.html)
|
|
40
|
+
* [Live2D Proprietary Software 使用授权协议](https://www.live2d.com/eula/live2d-proprietary-software-license-agreement_cn.html)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
Please contact us from [here](https://www.live2d.jp/contact/) for more license information.
|