Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@gluestack/framework

Package Overview
Dependencies
Maintainers
3
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gluestack/framework - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

actions/install.js

4

actions/hello-world.js

@@ -0,3 +1,5 @@

const { info } = require('../helpers/print');
module.exports = async () => {
console.log("\nHello world!\n")
info('Hello world!');
};
const commands = () => {
return [require('./hello-world')];
return [
require('./hello-world'),
require('./plugin-init'),
require('./publish'),
require('./install'),
];
};
module.exports = commands;

@@ -16,4 +16,4 @@ const { Command } = require('commander');

.name('glue')
.version('GlueStack Version ' + version)
.description('GlueStack framework');
.version('gluestack Version ' + version)
.description('gluestack framework');
};

@@ -26,2 +26,7 @@

// adds all the commands from the directory
commander.addCommand = async (program) => {
return cmd(program);
};
// parses and closes the command

@@ -28,0 +33,0 @@ commander.close = async () => {

{
"name": "@gluestack/framework",
"version": "0.0.1",
"description": "Framework code of GlueStack",
"version": "0.0.2",
"description": "Framework code of gluestack",
"main": "glue.js",
"scripts": {},

@@ -17,5 +18,11 @@ "repository": {

"dependencies": {
"colors": "^1.4.0",
"commander": "^9.4.1",
"shelljs": "^0.8.5"
"lodash": "^4.17.21",
"shelljs": "^0.8.5",
"tsc": "^2.0.4"
},
"devDependencies": {
"@types/node": "^18.11.14"
}
}
## About @gluestack/framework
> **Note:** This repository contains the framework code of the GlueStack framework. If you want to build an application using GlueStack, visit the main [GlueStack repository](https://github.com/gluestack/create-gluestack-app).
> **Note:** This repository contains the framework code of the gluestack framework. If you want to build an application using gluestack, visit the main [gluestack repository](https://github.com/gluestack/create-gluestack-app).

@@ -5,0 +5,0 @@ ## Usage

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc