-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "astro-themes",
"version": "0.2.5",
"description": "Easy dark mode for Astro websites",
"type": "module",
"exports": {
".": "./index.ts"
},
"files": [
"index.ts",
"build/Themes.astro"
],
"scripts": {
"clean": "rm -rf build",
"build": "node build.js",
"build:watch": "chokidar \"*.ts\" Themes.astro.template -c \"npm run build\"",
"example": "npm-run-all --parallel build:watch example:dev",
"example:dev": "astro dev --root example",
"example:build": "astro build --root example",
"example:start": "astro preview --root example",
"test": "playwright test",
"test:install": "playwright install --with-deps",
"test:server": "npm-run-all --sequential build example:build example:start",
"check": "npm-run-all --parallel check:*",
"check:code": "astro check",
"check:format": "prettier --check --cache .",
"check:styles": "stylelint --formatter verbose --cache --cache-location .cache --ignore-path .gitignore \"**/*.astro\"",
"fix": "npm-run-all --sequential fix:styles fix:format",
"fix:format": "prettier --write --cache .",
"fix:styles": "stylelint --formatter verbose --cache --cache-location .cache --ignore-path .gitignore \"**/*.astro\"",
"cz": "cz",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-grover/astro-themes.git"
},
"keywords": [
"astro",
"astro-component",
"css",
"dark-mode",
"theme",
"ui"
],
"author": "Alex Grover <[email protected]> (https://alexgrover.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-grover/astro-themes/issues"
},
"homepage": "https://github.com/alex-grover/astro-themes#readme",
"peerDependencies": {
"astro": "*"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.0.3",
"@playwright/test": "^1.25.2",
"astro": "^4.16.6",
"chokidar-cli": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.15.5",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.5.0",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.5.3",
"stylelint": "^15.6.0",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "<5.5.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"stylelint": {
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order",
"stylelint-config-prettier",
"stylelint-config-astro"
]
},
"lint-staged": {
"*.astro": [
"stylelint --fix",
"prettier --write"
],
"!*.astro": "prettier --write --ignore-unknown"
}
}