-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1022 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1022 Bytes
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
{
"name": "bookmarklet-generator",
"version": "1.0.0",
"description": "A web-based tool for creating custom bookmarklets from JavaScript code",
"main": "index.html",
"scripts": {
"dev": "python3 -m http.server 3000",
"build": "echo 'Static site - no build step required'",
"start": "python3 -m http.server 8080",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "echo 'Linting will be configured in later tasks'",
"deploy": "vercel --prod"
},
"keywords": [
"bookmarklet",
"javascript",
"browser",
"web-tool",
"code-generator"
],
"author": "Bookmarklet Generator",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/peterbenoit/bookmarklet-generator.git"
},
"homepage": "https://bookmarklet-generator.vercel.app",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"vercel": "^44.6.4"
},
"devDependencies": {
"vitest": "^1.0.0",
"jsdom": "^23.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}