forked from ark120202/webpack-panorama
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "@demon673/webpack-panorama",
"version": "0.4.6",
"description": "Utilities for using webpack with Valve's Panorama UI (for Dota 2 Custom Games).",
"keywords": [
"dota",
"panorama",
"webpack"
],
"repository": "https://github.com/Demon673/webpack-panorama",
"license": "MIT",
"author": "Demon673",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.{js,ts,json}",
"manifest-template.ejs"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "run-p lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"prepublishOnly": "yarn build"
},
"prettier": {
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"parserOptions": {
"project": "tsconfig.json"
},
"extends": "@ark120202/eslint-config/node",
"ignorePatterns": "/lib"
},
"dependencies": {
"@posthtml/esm": "^1.0.0",
"html-webpack-plugin": "^5.5.0",
"js-yaml": "^4.1.0",
"loader-utils": "^3.2.0",
"lodash": "^4.17.21",
"posthtml": "^0.16.5",
"schema-utils": "^4.0.0"
},
"devDependencies": {
"@ark120202/eslint-config": "^2.5.0",
"@ark120202/typescript-config": "^2.2.0",
"@types/htmlparser2": "^3.10.3",
"@types/js-yaml": "^4.0.5",
"@types/loader-utils": "^2.0.3",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.5",
"eslint": "^8.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"webpack": "^5.65.0"
},
"peerDependencies": {
"webpack": "^5.65.0"
},
"engines": {
"node": ">=14.0.0"
}
}