Files
Nebula-Core/packages/core/package.json
T
andrew b2e42264ae Add .gitignore and remove checked-in nebula modules
Add a .gitignore and remove numerous @nebulaproject packages and their asset files from node_modules to stop committing dependency artifacts (glyphs, binaries, src/dist files). Also update packages/core/package.json metadata and refresh lockfiles.
2026-01-31 23:19:19 +13:00

31 lines
664 B
JSON

{
"name": "@nebulaproject/core",
"version": "0.1.3",
"description": "Controller-first foundation for SteamOS-friendly Nebula apps",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.js",
"./input": "./dist/input.js",
"./navigation": "./dist/navigation.js",
"./theme": "./dist/theme.js",
"./glyphs": "./dist/glyphs.js",
"./ui": "./dist/ui.js",
"./utils": "./dist/utils.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node scripts/build.js"
},
"dependencies": {
"@nebulaproject/core": "^0.1.3"
}
}