-
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.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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": "@photoserv/astro-loader",
"version": "0.1.0",
"type": "module",
"description": "Astro.js loader for Photoserv",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./api": {
"import": "./dist/api.js",
"types": "./dist/api.d.ts"
},
"./definitions": {
"import": "./dist/definitions.js",
"types": "./dist/definitions.d.ts"
},
"./loaders": {
"import": "./dist/loaders.js",
"types": "./dist/loaders.d.ts"
},
"./strings": {
"import": "./dist/strings.js",
"types": "./dist/strings.d.ts"
},
"./components/*": "./dist/components/*.astro"
},
"scripts": {
"build:ts": "tsc",
"copy:astro": "cpx \"src/components/**/*.astro\" dist/components",
"build": "npm run build:ts && npm run copy:astro"
},
"keywords": [
"photoserv",
"astro",
"photography"
],
"author": "Max Loiacono <maxloiacono@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.10.1",
"cpx": "^1.5.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"astro": "^5.16.4"
},
"repository": {
"type": "git",
"url": "https://github.com/photoserv/astro-loader"
}
}