-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 KB
/
package.json
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
{
"name": "userscripts",
"version": "1.1.0",
"description": "Userscripts for Greasemonkey, Tampermonkey etc.",
"main": "index.js",
"repository": "https://github.com/chocolateboy/userscripts",
"author": "chocolateboy",
"license": "GPL",
"private": true,
"sideEffects": false,
"scripts": {
"build": "make",
"build:doc": "toc-md README.md",
"clean": "make clean",
"rebuild": "make clean build",
"typecheck": "make typecheck"
},
"browserslist": [
"Firefox ESR",
"Last 2 Chrome versions"
],
"devDependencies": {
"@chocolateboy/uncommonjs": "^3.2.1",
"@types/bun": "^1.0.8",
"@types/greasemonkey": "^4.0.4",
"@types/jquery": "^3.5.16",
"@types/node": "^18.15.11",
"@types/shelljs": "^0.8.11",
"@types/tampermonkey": "^4.0.10",
"cash-dom": "^8.1.4",
"cross-env": "^7.0.3",
"crypto-hash": "^2.0.1",
"dayjs": "^1.11.7",
"flru": "^1.0.2",
"get-wild": "^3.0.2",
"gm-storage": "^2.0.3",
"little-emitter": "^0.3.5",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"toc-md-alt": "^0.4.6",
"tsc-files": "^1.1.3",
"typescript": "^5.0.4"
}
}