-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.1 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
51
{
"name": "codecorn-userscripts",
"version": "4.17.2",
"description": "A collection of advanced Tampermonkey userscripts crafted for debugging, automation, and UI manipulation",
"scripts": {
"test": "npm run format:checktest && echo 'Running live server...' && npm run dev",
"dev": "serve . -p 8765 --cors -l tcp://localhost",
"format": "prettier --write \"**/*.{js,json,md}\"",
"format:checktest": "prettier --check \"**/*.js\"",
"format:js": "prettier --write \"**/*.js\"",
"sync-version": "node scripts/sync-versions.js",
"preversion": "npm run format:js",
"version": "npm run sync-version && git add -u",
"postversion": "git push && git push --tags",
"freeze": "bash scripts/_cc-freeze.sh",
"build:godmode": "terser god-mode-console/CodeCorn_GodMode.user.js -o god-mode-console/dist/CodeCorn_GodMode.min.user.js --compress --mangle --comments \"/^!/\"",
"clean:prev": "find . -type d -name '_PREV' -exec rm -rf {} +",
"new:script": "bash -c 'mkdir -p \"$0\" && cp template/jsconfig.json \"$0/\" && touch \"$0/$0.user.js\"' ",
"release": "node scripts/release.js",
"copy:raw": "cat god-mode-console/CodeCorn_GodMode.user.js | pbcopy && echo '✅ Script RAW copiato nella clipboard!'",
"copy:min": "npm run build:godmode && cat god-mode-console/dist/CodeCorn_GodMode.min.user.js | pbcopy && echo '✅ Script MINIFIED buildato e copiato nella clipboard!'",
"restore:types": "python3 scripts/cc-restore-types.py"
},
"author": "Federico Girolami",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeCornTech/codecorn-userscripts.git"
},
"keywords": [
"tampermonkey",
"userscript",
"greasemonkey",
"devtools",
"debugging",
"dom-manipulation",
"frontend-development",
"automation",
"javascript",
"codecorn"
],
"bugs": {
"url": "https://github.com/CodeCornTech/codecorn-userscripts/issues"
},
"homepage": "https://github.com/CodeCornTech/codecorn-userscripts#readme",
"devDependencies": {
"prettier": "^3.8.4",
"serve": "^14.2.6",
"terser": "^5.48.0"
}
}