-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "clickcap",
"version": "1.0.1",
"description": "Smart screen recording with automatic click zoom and GIF export",
"main": "src/background/service-worker.js",
"scripts": {
"build": "echo 'No build step required for vanilla JS'",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.{js,css,html}",
"test": "node --test src/**/*.test.cjs",
"sync:version": "node scripts/sync-manifest-version.mjs",
"version": "node scripts/sync-manifest-version.mjs"
},
"keywords": [
"screen-recorder",
"chrome-extension",
"gif-recorder",
"click-zoom",
"tutorial-recorder",
"screen-capture"
],
"author": "Declan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DeclanJeon/ClickCap.git"
},
"bugs": {
"url": "https://github.com/DeclanJeon/ClickCap.git/issues"
},
"homepage": "https://github.com/DeclanJeon/ClickCap.git#readme",
"devDependencies": {
"eslint": "^8.50.0",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=16.0.0"
}
}