-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.46 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
{
"name": "@blockquote/sass-style-template",
"version": "4.0.0",
"description": "A SCSS watcher with autoprefixer for building Web Components using Lit and SASS.",
"keywords": [
"lit",
"web-components",
"postcss",
"style",
"scss",
"sass",
"css"
],
"author": "Oscar Marina",
"license": "MIT",
"homepage": "https://github.com/oscarmarina/sass-style-template",
"repository": {
"type": "git",
"url": "https://github.com/oscarmarina/sass-style-template"
},
"main": "./lib/index.js",
"type": "module",
"files": [
"/bin/",
"/lib/",
"/tpls/"
],
"bin": {
"sass-style-template": "./bin/index.js"
},
"scripts": {
"start": "node ./bin/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "eslint . --fix"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"chokidar": "^4.0.1",
"commander": "^12.1.0",
"postcss": "^8.4.47",
"sass": "^1.80.6",
"tinyglobby": "^0.2.10"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "*.{scss,css}",
"options": {
"printWidth": 280,
"singleQuote": false
}
}
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0"
}
}