Add package metadata

This commit is contained in:
Talia 2025-08-09 20:40:46 +02:00
parent 8c243adb8d
commit 59df45def7
Signed by: darkwiiplayer
GPG key ID: 7808674088232B3E
2 changed files with 20 additions and 0 deletions

7
jsconfig.json Normal file
View file

@ -0,0 +1,7 @@
{
"compilerOptions": {
"target": "esnext",
"allowJs": true,
"checkJs": true
}
}

13
package.json Normal file
View file

@ -0,0 +1,13 @@
{
"name": "controller-registry",
"exports": {
".": "./src/controller-registry.js"
},
"type": "module",
"license": "MIT",
"version": "0.0.1",
"url": "https://git.but.gay/darkwiiplayer/controller-registry",
"scripts": {
"definitions": "tsc src/*.js --declaration --allowJs --emitDeclarationOnly"
}
}