-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 967 Bytes
/
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
{
"name": "@jgarber/eleventy-plugin-sass",
"version": "1.0.0",
"description": "An Eleventy plugin for processing SCSS files with Dart Sass.",
"keywords": [
"eleventy",
"eleventy-plugin",
"sass",
"scss"
],
"homepage": "https://github.com/jgarber623/eleventy-plugin-sass",
"bugs": "https://github.com/jgarber623/eleventy-plugin-sass/issues",
"license": "MIT",
"author": "Jason Garber <jason@sixtwothree.org> (https://sixtwothree.org)",
"files": [
"index.js"
],
"exports": {
"./package.json": "./package.json",
".": "./index.js"
},
"repository": "github:jgarber623/eleventy-plugin-sass",
"scripts": {
"lint": "eslint ."
},
"dependencies": {
"sass": "^1.77.8"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@jgarber/eslint-config": "^6.1.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"11ty": {
"compatibility": ">=2.0.0"
}
}