b2e42264ae
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.
31 lines
664 B
JSON
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"
|
|
}
|
|
}
|