This repository was archived by the owner on Oct 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +50
-0
lines changed
Expand file tree Collapse file tree 5 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ /node_modules /
2+ package-lock.json
Original file line number Diff line number Diff line change 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" ) ;
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 1+ const fs = require ( "fs" ) ;
Original file line number Diff line number Diff line change 1+ /** @type {import('tailwindcss').Config } */
2+ module . exports = {
3+ content : [ ] ,
4+ theme : {
5+ extend : { } ,
6+ } ,
7+ plugins : [ ] ,
8+ }
9+
You can’t perform that action at this time.
0 commit comments