generated from pboymt/userscript-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (91 loc) · 3.17 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
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
84
85
86
87
88
89
90
91
92
{
"name": "userscript-typescript-template-kw",
"version": "1.2.0",
"description": "Template repo using Webpack and TypeScript to build your userscript for Tampermonkey and more extensions.",
"main": "userscript/index.user.js",
"scripts": {
"build:dev": "npx cross-env ENV=development webpack",
"build:prod": "npx cross-env ENV=production webpack",
"build:watch": "npm run build:watch:dev",
"build:watch:dev": "npx cross-env ENV=development webpack --watch",
"build:watch:prod": "npx cross-env ENV=production webpack --watch",
"lint": "npm run lint:scripts && npm run lint:styles",
"lint:fix": "npm run lint:scripts:fix && npm run lint:styles:fix",
"lint:scripts": "eslint ./src",
"lint:styles": "stylelint --syntax scss ./src/assets/styles/**",
"lint:styles:fix": "stylelint --syntax scss ./src/assets/styles/** --fix",
"lint:scripts:fix": "eslint ./src --fix",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pboymt/userscript-typescript-template.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pboymt/userscript-typescript-template/issues"
},
"homepage": "https://github.com/pboymt/userscript-typescript-template#readme",
"devDependencies": {
"@types/node": "^16.11.10",
"@types/prettier": "^2.7.0",
"@types/tampermonkey": "^4.0.5",
"@types/webpack": "^5.28.0",
"axios-userscript-adapter": "^0.1.12",
"crossenv": "^0.0.2-security",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"html-loader": "^4.2.0",
"reflect-metadata": "^0.1.13",
"sass-loader": "^13.2.0",
"sass": "^1.57.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsyringe": "^4.7.0",
"typescript": "^4.5.2",
"webpack-cli": "^4.9.1",
"webpack": "^5.64.3",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/eslint-plugin-tslint": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jsdoc": "^46.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"stylelint": "^15.6.2",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.3",
"tslint": "^6.1.3"
},
"userscript": {
"name": "Userscript TypeScript Template by Kenya-West",
"require-template": "https://cdn.jsdelivr.net/npm/${dependencyName}@${dependencyVersion}",
"namespace": "http://tampermonkey.net/",
"license": "https://opensource.org/licenses/MIT",
"match": [
"http*://motherfuckingwebsite.com/*"
],
"run-at": "document-end",
"connect": [],
"require": [],
"grant": [],
"exclude": [],
"resources": []
},
"dependencies": {
}
}