UNPKG

1.52 kBJSONView Raw
1{
2 "name": "lessc-watch",
3 "version": "1.2.0",
4 "description": "Watch for file changes and compile less files into a single css bundle file.",
5 "main": "lib/index.js",
6 "types": "lib/index.d.ts",
7 "files": [
8 "bin",
9 "lib",
10 "LICENSE"
11 ],
12 "bin": {
13 "lessc-watch": "./bin/lessc-watch"
14 },
15 "scripts": {
16 "build": "tsc",
17 "example": "tsc && node ./example/example.js",
18 "example:cli": "tsc && ./bin/lessc-watch ./example/src/index.less ./example/dist/bundle-cli.css -d=./example/src -ru=all --global-vars=prefix=myui,primary-color=red",
19 "lint": "eslint --ext .js,.ts,.tsx ./src",
20 "lint:fix": "eslint --fix --ext .js,.ts,.tsx ./src",
21 "format": "prettier -u --write .",
22 "prepublishOnly": "tsc"
23 },
24 "keywords": [
25 "less",
26 "lessc",
27 "watch",
28 "watcher"
29 ],
30 "dependencies": {
31 "chokidar": "^3.5.3",
32 "less": "^4.2.0"
33 },
34 "devDependencies": {
35 "@eslint/create-config": "0.4.2",
36 "@types/less": "^3.0.3",
37 "@types/node": "^18.11.18",
38 "@typescript-eslint/eslint-plugin": "^5.48.0",
39 "@typescript-eslint/parser": "^5.48.0",
40 "eslint": "^8.31.0",
41 "eslint-config-prettier": "^8.6.0",
42 "prettier": "^2.8.2",
43 "typescript": "^4.9.4"
44 },
45 "repository": {
46 "type": "git",
47 "url": "git+https://github.com/john-yuan/lessc-watch.git"
48 },
49 "bugs": {
50 "url": "https://github.com/john-yuan/lessc-watch/issues"
51 },
52 "homepage": "https://github.com/john-yuan/lessc-watch#readme",
53 "author": "JOHN YUAN",
54 "license": "MIT"
55}