-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "astro-compressor",
"version": "0.4.1",
"description": "A gzip and brotli compressor for Astro",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sondr3/astro-compressor.git"
},
"author": "Sondre Nilsen <[email protected]> (https://www.eons.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sondr3/astro-compressor/issues"
},
"homepage": "https://github.com/sondr3/astro-compressor#readme",
"prettier": "@sondr3/prettier",
"keywords": [
"astro",
"astro-integration",
"astro-component",
"performance"
],
"files": [
"dist/**",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"dev": "tsc --watch --incremental",
"build": "rm -rf dist && tsc",
"lint": "eslint --cache src",
"lint:fix": "eslint --cache --fix src",
"format": "prettier --check src",
"format:fix": "prettier --cache --write src"
},
"devDependencies": {
"@sondr3/eslint-config": "0.7.1",
"@sondr3/prettier": "0.6.0",
"@sondr3/tsconfig": "0.8.0",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"astro": "2.1.3",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-tsdoc": "0.2.17",
"prettier": "2.8.5",
"prettier-eslint": "15.0.1",
"typescript": "4.9.5"
}
}