Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit b2c7939

Browse files
SQLite Viewer init
1 parent a78ac22 commit b2c7939

File tree

5 files changed

+50
-0
lines changed

5 files changed

+50
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules/
2+
package-lock.json

index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*
2+
* Name: SQLite Viewer
3+
* Description: SQLite Viewer for Node JS or JavaScript and TypeScript.
4+
* Version: 0.0.1
5+
* Developer: Sushil Kumar
6+
* Github: https://github.com/SQLiteAdmin/SQLite-Viewer.git
7+
* */
8+
9+
const path = require("path");

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "sqliteviewer",
3+
"version": "0.0.1",
4+
"description": "SQLite Viewer for Node JS or JavaScript and TypeScript.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/SQLiteAdmin/SQLite-Viewer.git"
12+
},
13+
"keywords": [
14+
"SQLite",
15+
"SQL",
16+
"Viewer",
17+
"Database"
18+
],
19+
"author": "Sushil Kumar",
20+
"license": "MIT",
21+
"devDependencies": {
22+
"jest": "^29.7.0",
23+
"tailwindcss": "^3.4.8"
24+
},
25+
"dependencies": {
26+
"dotenv": "^16.4.5",
27+
"ejs": "^3.1.10"
28+
}
29+
}

src/viewer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
const fs = require("fs");

tailwind.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
content: [],
4+
theme: {
5+
extend: {},
6+
},
7+
plugins: [],
8+
}
9+

0 commit comments

Comments
 (0)