-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "astro-loader-pocketbase",
"version": "3.0.2",
"description": "A content loader for Astro that uses the PocketBase API",
"keywords": [
"astro",
"astro-content-loader",
"astro-loader",
"pocketbase",
"withastro"
],
"homepage": "https://github.com/pawcoding/astro-loader-pocketbase",
"bugs": {
"url": "https://github.com/pawcoding/astro-loader-pocketbase/issues"
},
"license": "MIT",
"author": "Luis Wolf <development@pawcode.de> (https://pawcode.de)",
"repository": {
"type": "git",
"url": "git+https://github.com/pawcoding/astro-loader-pocketbase.git"
},
"files": [
"src"
],
"type": "module",
"exports": {
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky",
"test": "vitest run",
"test:e2e": "vitest run $(find test -name '*.e2e-spec.ts')",
"test:e2e:pocketbase": "npm run test:e2e:setup && ./.pocketbase/pocketbase serve",
"test:e2e:setup": "./scripts/setup-pocketbase.sh",
"test:e2e:watch": "vitest watch $(find test -name '*.e2e-spec.ts')",
"test:unit": "vitest run $(find test -name '*.spec.ts')",
"test:unit:watch": "vitest watch $(find test -name '*.spec.ts')",
"test:watch": "vitest watch",
"typecheck": "npx @typescript/native-preview --noEmit -p src/tsconfig.json && npx @typescript/native-preview --noEmit -p test/tsconfig.json"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "4.1.4",
"astro": "6.1.5",
"globals": "17.5.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"oxfmt": "0.44.0",
"oxlint": "1.59.0",
"oxlint-tsgolint": "0.20.0",
"vitest": "4.1.4",
"zod-to-ts": "2.0.0"
},
"peerDependencies": {
"astro": "^6.0.0",
"zod-to-ts": "^2.0.0"
},
"packageManager": "npm@11.12.1"
}