New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-ziko-app

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-ziko-app - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

2

package.json
{
"name": "create-ziko-app",
"version": "0.0.4",
"version": "0.0.5",
"description": "Easily create Ziko apps without any complicated build setup.",

@@ -5,0 +5,0 @@ "type": "module",

@@ -7,1 +7,26 @@ ## Quick Start

```
## Output
```
my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│ ├── favicon.ico
│ ├── index.html
│ ├── manifest.json
│ └── robots.txt
├── config
│ ├── build
│ │ ├── rollup.config.js
│ ├── dev
│ │ ├── rollup.config.js
└── src
├── main.js
```
## Scripts
#### npm start
#### npm run dev
#### npm run build

@@ -10,2 +10,4 @@ #!/usr/bin/env node

copyFolder(TEMPLATE,path.join(process.cwd(),PROJECT_TITLE));
runCommand(`cd ${PROJECT_TITLE} && npm install`);
runCommand(`cd ${PROJECT_TITLE} && npm install`);
console.log("old one")

@@ -5,6 +5,5 @@ {

"description": "",
"main": "index.js",
"main": "src/main.js",
"type": "module",
"scripts": {
"start": "node config/serve/index.js",
"dev": "rollup -c config/dev/rollup.config.js",

@@ -11,0 +10,0 @@ "watch": "rollup -c config/dev/rollup.config.js -w",

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