987ff560f5
Import initial monorepo structure for Nebula Core: add packages (@nebula/core, core-glyphs, core-input, core-navigation, core-theme, core-ui, core-utils) with source, dist, tests and assets. Expand README with overview, quick start and API snippets, and add package-level documentation files. Add jsconfig.json for path mapping, package.json and lockfiles to bootstrap the repo. This commit sets up the project layout, docs, and local package links for further development.
22 lines
430 B
JSON
22 lines
430 B
JSON
{
|
|
"name": "@nebulaproject/core-input",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"description": "Action-based input abstraction for controllers, keyboard, and mouse.",
|
|
"type": "module",
|
|
"exports": "./src/index.js",
|
|
"main": "./src/index.js",
|
|
"files": [
|
|
"src"
|
|
],
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"test": "node --test"
|
|
},
|
|
"dependencies": {
|
|
"@nebulaproject/core-utils": "0.1.0"
|
|
}
|
|
}
|