-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 KB
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
{
"name": "@glzr/style-guide",
"version": "0.0.0",
"description": "Shared configs for linting and styling tools.",
"homepage": "https://github.com/glzr-io/style-guide#readme",
"bugs": {
"url": "https://github.com/glzr-io/style-guide/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/glzr-io/style-guide.git"
},
"license": "MIT",
"exports": {
"./prettier": "./prettier/index.js",
"./tsconfig": "./tsconfig/base.json",
"./tsconfig/astro-app": "./tsconfig/astro-app.json",
"./tsconfig/nestjs-app": "./tsconfig/nestjs-app.json",
"./tsconfig/solidjs-app": "./tsconfig/solidjs-app.json",
"./tsconfig/solidjs-lib": "./tsconfig/solidjs-lib.json",
"./tsconfig/vanilla-bundler": "./tsconfig/vanilla-bundler.json",
"./tsconfig/vanilla-nodejs": "./tsconfig/vanilla-nodejs.json"
},
"files": [
"prettier",
"tsconfig"
],
"scripts": {
"lint": "prettier --check ."
},
"prettier": "./prettier",
"dependencies": {
"prettier-plugin-astro": "0.12.3",
"prettier-plugin-packagejson": "2.4.5"
},
"devDependencies": {
"prettier": "3.1.1",
"typescript": "5.3.3"
},
"peerDependencies": {
"prettier": ">=3.0.0 <4",
"typescript": ">=5.0.0 <6"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
},
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}