-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "@codiume/astro-component-starter",
"version": "1.0.0",
"description": "A component stater template for Astro framework",
"homepage": "https://github.com/codiume/astro-component-starter",
"keywords": [
"astro",
"library",
"starter-kit",
"astro-starter-kit",
"astro-template"
],
"author": "MHD <m@codiume.com>",
"contributors": [
{
"name": "MHD",
"url": "https://x.com/the_dijkstra"
}
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"preview": "astro preview",
"build": "astro check && node scripts/build.mjs",
"lint": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check --write .",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm run format",
"changeset:publish": "pnpm run build && changeset publish"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codiume/astro-component-starter.git"
},
"devDependencies": {
"@astrojs/check": "^0.9.2",
"@biomejs/biome": "1.8.3",
"@changesets/cli": "^2.27.7",
"astro": "^4.13.3",
"esbuild": "^0.23.0",
"esbuild-plugin-clean": "^1.0.1",
"typescript": "^5.5.4"
}
}