-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.72 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.72 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@trim21/gm-fetch",
"version": "0.3.0",
"description": "fetch for UserScript",
"keywords": [
"userscript",
"typescript"
],
"prettier": {
"printWidth": 120,
"trailingComma": "all"
},
"type": "module",
"packageManager": "yarn@4.12.0",
"sideEffects": false,
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/gm_fetch.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"./src/",
"./dist/"
],
"scripts": {
"format": "prettier --list-different -w ./",
"version": "npm run build",
"dev": "rollup --watch -c dev/rollup.config.cjs",
"build": "rollup -c",
"test": "tsc --noEmit && jest"
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx,json,yml,yaml}": [
"prettier --ignore-path ./.prettierignore --write "
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/trim21/gm-fetch.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Trim21/gm-fetch/issues"
},
"homepage": "https://github.com/Trim21/gm-fetch",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/greasemonkey": "^4.0.7",
"@types/jest": "^30.0.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.3.1",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"rollup-plugin-banner2": "^1.3.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"userscript-metadata-generator": "^0.2.4"
},
"publishConfig": {
"access": "public"
}
}