-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.01 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
{
"name": "@snakeroom/field-screenshot",
"version": "1.0.0",
"private": true,
"description": "Captures images of r/Field.",
"main": "./src/index.js",
"type": "module",
"scripts": {
"dev": "node --watch .",
"lint": "eslint \"./**/*.js\" --ignore-path .gitignore",
"start": "node ."
},
"keywords": [
"field",
"reddit",
"image",
"canvas"
],
"author": "haykam821",
"license": "MIT",
"dependencies": {
"@devvit/protos": "^0.11.11",
"canvas": "^3.1.0",
"debug": "^4.4.0",
"supports-color": "^10.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.13.17",
"eslint": "^8.57.1",
"eslint-config-haykam": "^1.24.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Snakeroom/Field-Capture.git"
},
"bugs": {
"url": "https://github.com/Snakeroom/Field-Capture/issues"
},
"homepage": "https://github.com/Snakeroom/Field-Capture#readme",
"eslintConfig": {
"extends": "eslint-config-haykam",
"parserOptions": {
"sourceType": "module"
}
}
}