Skip to content

Commit

Permalink
initial npm package for npui
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahdi-Hazrati committed Oct 19, 2024
1 parent db00701 commit d1dacf5
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# dependencies
/node_modules
/cli/node_modules

/.pnp
.pnp.js
.yarn/install-state.gz
Expand Down
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"NPUI"
]
}
4 changes: 4 additions & 0 deletions cli/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore unnecessary files
node_modules/
logs/
test/
1 change: 1 addition & 0 deletions cli/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello NPUI :)");
44 changes: 44 additions & 0 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "npui",
"version": "2.0.0",
"description": "npui - open component library",
"main": "main.ts",
"bin": {
"npui": "./main.ts"
},
"scripts": {
"test": "echo \"Hi, NPUI :)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/NextProduction/npui.git"
},
"keywords": [
"npui",
"react-components",
"nextproduction",
"mahdihazrati",
"component-library",
"ui-kit",
"design-system",
"tailwind-components",
"ui-components",
"npm-package",
"nextjs-ui",
"nextjs-components",
"frontend-library",
"react-ui",
"nextproduction-dev",
"open-source-ui",
"storybook",
"ui-installer",
"tailwind-ui",
"react-component-library"
],
"author": "Mahdi@NextProduction.dev",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/NextProduction/npui/issues"
},
"homepage": "https://nextproduction.dev/npui/"
}
1 change: 1 addition & 0 deletions cli/scripts/installer.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This main installer for npui

0 comments on commit d1dacf5

Please sign in to comment.