-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.16 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "astro-decap-collection",
"version": "0.3.1",
"license": "MIT",
"description": "Derive Astro collection schemata from Decap configs.",
"author": {
"name": "David Enke",
"email": "david@enke.dev"
},
"keywords": [
"astro",
"decap",
"convert",
"transform",
"config",
"collection",
"schema"
],
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"astro-decap-collection": "lib/cli.js",
"adc": "lib/cli.js"
},
"type": "module",
"scripts": {
"lint": "eslint --flag unstable_ts_config",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" NODE_NO_WARNINGS=1 jest",
"dev": "vite dev",
"build:lib": "tsc -p tsconfig.lib.json",
"build:demo": "vite build",
"build": "run-p -lns build:*"
},
"peerDependencies": {
"astro": "^4.0.0",
"decap-cms-core": "^3.4.0",
"zod": "^3.20.0"
},
"optionalDependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.13",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.10.0",
"@typescript-eslint/parser": "8.10.0",
"astro": "4.16.6",
"common-tags": "1.8.2",
"cross-env": "7.0.3",
"decap-cms-core": "3.4.2",
"eslint": "9.13.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"fast-glob": "3.3.2",
"highlight.js": "11.10.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jiti": "2.3.3",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"simple-icons": "13.14.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-eslint": "8.10.0",
"vite": "5.4.9",
"vite-plugin-checker": "0.8.0",
"vite-plugin-node-polyfills": "0.22.0",
"zod": "3.23.8"
},
"bugs": "https://github.com/davidenke/astro-decap-collection/issues",
"homepage": "https://davidenke.github.io/astro-decap-collection",
"repository": {
"type": "git",
"url": "git+https://github.com/davidenke/astro-decap-collection.git"
}
}