Files
vpinball-wasm/package.json
T
valknarandClaude Sonnet 5 ad66bbf6be
CI / Build wasm engine (push) Successful in 9m32s
Rename package from @valknar/vpinball-wasm to vpinball-wasm
Unscoped, matching this project's other Gitea-published package
(triggershell) - the registry is already scoped to the right owner via
publishConfig.registry's URL path (.../valknar/npm/), so an npm scope
on the package name itself is redundant. The old @valknar/vpinball-wasm
package published under the previous name is being removed manually.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-22 19:06:44 +02:00

29 lines
680 B
JSON

{
"name": "vpinball-wasm",
"version": "0.1.0",
"description": "Visual Pinball's engine compiled to WebAssembly - real .vpx tables, real VBScript, WebGL2 rendering, in the browser",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"package/assets/",
"README.md",
"LICENSE"
],
"scripts": {
"build:wrapper": "tsc -p package/tsconfig.json"
},
"publishConfig": {
"registry": "https://dev.pivoine.art/api/packages/valknar/npm/"
},
"repository": {
"type": "git",
"url": "https://dev.pivoine.art/valknar/vpinball-wasm.git"
},
"devDependencies": {
"typescript": "^5.6.0"
}
}