-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "code-snapshot",
"version": "1.0.0",
"description": "Export your entire codebase instantly with 100% privacy. Zero uploads, all processing is local.",
"keywords": [
"code-export",
"codebase-snapshot",
"source-code",
"privacy-first",
"local-processing",
"code-backup",
"developer-tool"
],
"author": {
"name": "Vinay Patel",
"url": "https://devcodesnap.vercel.app"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vinay-patel22/code-snapshot"
},
"homepage": "https://devcodesnap.vercel.app",
"bugs": {
"url": "https://github.com/vinay-patel22/code-snapshot/issues"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "npx http-server -p 3000 -c-1",
"build": "echo 'Static site - no build required'",
"serve": "npx http-server -p 8080 -g",
"test": "echo 'No tests configured'",
"lint": "eslint js/**/*.js",
"lint:fix": "eslint js/**/*.js --fix"
},
"devDependencies": {
"http-server": "^14.1.1",
"eslint": "^8.57.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not IE 11"
]
}