MSAgent-Chat/webapp/package.json
Lily Tsuru 2c8793a796 msagent.js: Parse character info
msagent.js can now parse the character section of a ACS file fully.

This also adds a testbed thing. Later on it will display individual frames
and animations for debugging before the full character API is ready.
For now, it just has a file input for dumping ACS files into so we can debug
reading of the data.
2024-07-03 06:00:22 -04:00

23 lines
662 B
JSON

{
"name": "@msagent-chat/webapp",
"scripts": {
"build": "parcel build --no-source-maps --dist-dir dist --public-url '.' src/html/index.html src/html/testbed.html",
"serve": "parcel src/html/index.html src/html/testbed.html",
"clean": "run-script-os",
"clean:darwin:linux": "rm -rf dist .parcel-cache",
"clean:win32": "rd /s /q dist .parcel-cache"
},
"packageManager": "yarn@4.2.2",
"devDependencies": {
"@msagent-chat/msagent.js": "*",
"@parcel/core": "^2.12.0",
"parcel": "^2.12.0",
"run-script-os": "^1.1.6",
"typescript": "^5.5.3"
},
"type": "module",
"dependencies": {
"nanoevents": "^9.0.0"
}
}