-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.82 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": "@chipzhang/webpack-less-vars-loader",
"version": "0.1.4",
"description": "A webpack loader to access LESS variables in JS",
"keywords": [
"webpack",
"loader",
"less",
"less-vars",
"less-variables"
],
"homepage": "https://github.com/chipzhang/webpack-less-vars-loader#readme",
"repository": {
"type": "git",
"url": "https://github.com/chipzhang/webpack-less-vars-loader"
},
"bugs": {
"url": "https://github.com/chipzhang/webpack-less-vars-loader/issues"
},
"author": "Chip Zhang <zccoding@gmail.com> (https://github.com/chipzhang)",
"license": "AGPL-3.0-only",
"engines": {
"node": ">=12.0.0"
},
"main": "index.js",
"files": [
"*.js",
"!.*.js",
"*.d.ts"
],
"bin": {
"less-vars-gen-types": "gen-types.js"
},
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"prettier": "prettier --write .",
"compile": "tsc -p tsconfig.json",
"example:gen-types": "node gen-types.js example/src/vars.less",
"example:start": "webpack serve --config example/webpack.dev.config.js",
"example:build": "webpack --config example/webpack.prod.config.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/eslint-plugin": "^7.13.16",
"@chipzhang/eslint-config": "^0.1.2",
"@chipzhang/prettier-config": "^0.1.2",
"@chipzhang/tsconfig": "^0.1.6",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"html-webpack-plugin": "^5.3.1",
"less": "^4.1.1",
"less-loader": "^9.0.0",
"prettier": "2.3.0",
"style-loader": "^2.0.0",
"typescript": "4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
}
}