@toonstrip/pack-comic-chat 0.1.0 → 0.1.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/README.md +45 -0
- package/package.json +16 -2
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# @toonstrip/pack-comic-chat
|
|
2
|
+
|
|
3
|
+
toonstrip's default asset pack: the original 15-character Microsoft Comic
|
|
4
|
+
Chat roster (`dan`, `anna`, `bolo`, `denise`, `kevin`, `lynnea`, `margaret`,
|
|
5
|
+
`rebecca`, `tiki`, `sage`, `kwensa`, `hugh`, `maynard`, `scotty`,
|
|
6
|
+
`tongtyed`) plus 3 backdrops (`field`, `pastoral`, `room8bs`), each
|
|
7
|
+
character with sprite sheets covering the full emotion wheel. Zero runtime
|
|
8
|
+
dependencies.
|
|
9
|
+
|
|
10
|
+
Part of [toonstrip](https://github.com/dkdev24/toonstrip), a
|
|
11
|
+
framework-embeddable comic-strip renderer.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
npm install @toonstrip/pack-comic-chat
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
**Node (`@toonstrip/core`):**
|
|
22
|
+
|
|
23
|
+
```ts
|
|
24
|
+
import { loadCastManifest } from "@toonstrip/pack-comic-chat";
|
|
25
|
+
|
|
26
|
+
const manifest = loadCastManifest(); // CastManifest, sheet/backdrop paths are absolute
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
**Browser (`@toonstrip/element`) / Astro (`@toonstrip/astro`):** don't
|
|
30
|
+
import this package's JS directly — pass it by name to the integration/element
|
|
31
|
+
instead, so its `pack.json` + `characters/` + `backdrops/` files get served
|
|
32
|
+
over HTTP. See those packages' READMEs.
|
|
33
|
+
|
|
34
|
+
## Validate
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
npx @toonstrip/cli pack validate node_modules/@toonstrip/pack-comic-chat
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
MIT. This pack incorporates Microsoft Comic Chat character and backdrop art
|
|
43
|
+
under its original MIT grant — see `NOTICE` in this package and
|
|
44
|
+
[`THIRD_PARTY.md`](https://github.com/dkdev24/toonstrip/blob/main/THIRD_PARTY.md)
|
|
45
|
+
in the repo for the full attribution and trademark disclaimer.
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toonstrip/pack-comic-chat",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "The default toonstrip asset pack: the 15-character Microsoft Comic Chat roster and 3 backdrops.",
|
|
4
5
|
"license": "MIT",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "./dist/index.js",
|
|
@@ -26,5 +27,18 @@
|
|
|
26
27
|
},
|
|
27
28
|
"publishConfig": {
|
|
28
29
|
"access": "public"
|
|
29
|
-
}
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"toonstrip",
|
|
33
|
+
"comic",
|
|
34
|
+
"asset-pack",
|
|
35
|
+
"comic-chat"
|
|
36
|
+
],
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/dkdev24/toonstrip.git",
|
|
40
|
+
"directory": "packages/pack-comic-chat"
|
|
41
|
+
},
|
|
42
|
+
"homepage": "https://github.com/dkdev24/toonstrip#readme",
|
|
43
|
+
"bugs": "https://github.com/dkdev24/toonstrip/issues"
|
|
30
44
|
}
|