-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2 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
{
"name": "astro-rename",
"description": "astro-rename is an Astro integration that brings postcss-rename functionality to your Astro project without the need for configuration.",
"packageManager": "[email protected]",
"type": "module",
"version": "1.1.2",
"license": "GPL-3.0+",
"author": "Rodrigo Tomé <[email protected]>",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/RodrigoTomeES/astro-rename.git"
},
"homepage": "https://github.com/RodrigoTomeES/astro-rename",
"keywords": [
"astro-integration",
"postcss-rename",
"astro-component",
"withastro",
"performance",
"perf",
"optimization"
],
"bugs": "https://github.com/RodrigoTomeES/astro-rename/issues",
"files": [
"dist"
],
"scripts": {
"build": "yarn lint && yarn tsc && lightrix build 'src/**/*.ts'",
"prepare": "husky install",
"tsc": "tsc --project ./",
"lint": "eslint --fix \"**/*.{ts,tsx,js,cjs,mjs,jsx}\""
},
"dependencies": {
"console-table-printer": "2.11.2",
"md5": "2.3.0",
"postcss": "8.4.31",
"postcss-load-config": "4.0.1",
"postcss-rename": "0.6.1",
"pretty-bytes": "6.1.1"
},
"devDependencies": {
"@commitlint/cli": "18.2.0",
"@commitlint/config-conventional": "18.1.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@lightrix/scripts": "1.0.7",
"@types/md5": "2.3.4",
"@types/node": "20.8.10",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"astro": "3.4.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-astro": "0.29.1",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"sideEffects": [],
"engines": {
"node": ">=18"
}
}