-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.4 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
{
"name": "tampermonkey-scripts",
"version": "1.0.0",
"description": "TampermonkeyScripts",
"scripts": {
"serve": "webpack serve --mode=development",
"dev": "webpack --mode=development --watch --progress",
"build": "webpack --mode=production --progress",
"predeploy": "npm run build",
"deploy": "gh-pages -d ./dist",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix && stylelint **/*.scss --fix && prettier --write **/*.{js,ts,tsx,json,md,scss}",
"stylelint": "stylelint **/*.scss",
"prepare": "husky"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/sakura-flutter/tampermonkey-scripts.git"
},
"keywords": [
"tampermonkey"
],
"author": "sakura-flutter",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sakura-flutter/tampermonkey-scripts/issues"
},
"homepage": "https://github.com/sakura-flutter/tampermonkey-scripts#readme",
"dependencies": {
"core-js": "^3.47.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.39.2",
"@types/crypto-js": "^4.2.2",
"@types/jquery": "^3.5.33",
"@types/tampermonkey": "^5.0.5",
"@vue/babel-plugin-jsx": "^2.0.1",
"autoprefixer": "^10.4.23",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.1",
"crypto-js": "^4.2.0",
"css-loader": "^7.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.7.0",
"eslint-webpack-plugin": "^5.0.2",
"gh-pages": "^6.3.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss-loader": "^8.2.0",
"prettier": "^3.8.0",
"sass-embedded": "^1.97.2",
"sass-loader": "^16.0.6",
"semver": "^7.7.3",
"style-loader": "^4.0.0",
"stylelint": "^17.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^5.3.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"viewerjs": "^1.11.7",
"vue": "^3.5.26",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint"
],
"*.{scss}": [
"npm run stylelint"
]
}
}