This repository was archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "userscripts",
"version": "1.0.0",
"private": true,
"description": "一些自制的油猴脚本",
"scripts": {
"dev": "rollup -c -w -m inline",
"build": "rollup -c",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curly210102/UserScripts.git"
},
"keywords": [
"UserScripts"
],
"author": "Curly Brackets",
"license": "MIT",
"bugs": {
"url": "https://github.com/curly210102/UserScripts/issues"
},
"homepage": "https://github.com/curly210102/UserScripts#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "2.4.1",
"rollup": "^2.57.0"
},
"browserslist": "chrome >= 31, edge >= 20, safari >= 6, firefox >= 52, opera >= 15 and > 0.2%",
"dependencies": {
"@homegrown/word-counter": "^0.1.3",
"core-js": "^3.17.3",
"nomatter": "^0.1.0"
},
"lint-staged": {
"src/**/*.js": "eslint --fix"
}
}