-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 830 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
{
"name": "folder-monkey",
"version": "1.0.2",
"description": "TamperMonkey alternative with folder structure, ES modules, and npm build sync for developers.",
"main": "template/build.js",
"bin": {
"folder-monkey": "bin/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.js",
"watch": "node watch.js"
},
"keywords": [
"chrome-extension",
"tampermonkey",
"build-tool",
"userscript"
],
"author": "noahfuchs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/noah-fuchs/folder-monkey.git"
},
"files": [
"bin/",
"template/"
],
"type": "commonjs",
"dependencies": {
"chokidar": "^5.0.0",
"esbuild": "^0.27.3",
"fs-extra": "^11.3.3",
"ws": "^8.19.0"
}
}