-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1008 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1008 Bytes
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
{
"name": "astro-component-name",
"version": "0.1.0",
"description": "A astro component template",
"type": "module",
"exports": {
".": "./index.ts"
},
"files": [
"src",
"index.ts"
],
"keywords": [
"astro-component"
],
"scripts": {
"test": "vitest",
"format": "prettier -w .",
"lint": "eslint . --ext .ts,.js,.astro src",
"dev": "cd example && astro dev"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.15.3",
"typescript-eslint": "^8.17.0",
"astro": "^5.7.8",
"eslint": "^9.25.1",
"eslint-plugin-astro": "^1.3.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.8.3",
"vitest": "^3.1.2",
"@typescript-eslint/parser": "^8.31.1"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}