-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.08 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
70
71
72
73
74
{
"name": "@dawaltconley/responsive-images",
"version": "0.5.1",
"description": "Scripts and utilities for working with responsive images.",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./eleventy": "./dist/plugins/eleventy.js",
"./sass": "./dist/sass/index.js",
"./devices": "./dist/data/devices.js"
},
"files": [
"_index.scss",
"dist/**/*"
],
"scripts": {
"compile": "npx tsc",
"build": "./build.sh",
"lint": "npx eslint . && npx stylelint src/sass/_mixins.scss && npx prettier -c .",
"test": "npx vitest run && npm run lint",
"test:watch": "npx vitest",
"document": "npx typedoc src/index.ts src/sass/index.ts src/plugins/*.ts src/data/devices.ts",
"prepublishOnly": "npm run document",
"prepack": "npm test && npm run build"
},
"keywords": [
"images",
"responsive",
"eleventy",
"eleventy-plugin"
],
"author": "Dylan Awalt-Conley",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@types/11ty__eleventy-img": "^4.0.0",
"@types/flat-cache": "^2.0.2",
"@types/hast": "^3.0.4",
"@types/lodash.groupby": "^4.6.9",
"@types/node-fetch": "^2.6.11",
"liquid-args": "^1.1.0",
"lodash.groupby": "^4.6.0",
"media-query-parser": "^2.0.2",
"sass-cast": "^0.5.6"
},
"optionalDependencies": {
"sass": "^1.45.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/lodash": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"hast-util-to-html": "^9.0.0",
"liquidjs": "^10.10.1",
"lodash": "^4.17.21",
"node-html-parser": "^6.1.12",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-scss": "^6.2.1",
"typedoc": "^0.25.12",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
}
}