-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.58 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
{
"name": "root",
"version": "0.0.0",
"type": "module",
"private": true,
"author": "Tom Theisel <tom.theisel@gmail.com>",
"license": "ISC",
"scripts": {
"launch-demo": "astro --root demo dev",
"format": "prettier -w **/*.{astro,js,jsx,mjs,svelte,ts,tsx}",
"lint": "eslint .",
"prepare": "husky || true",
"generate-docs": "typedoc && prettier --write docs/types/",
"test:ci": "pnpm --filter lab test:ci",
"test": "pnpm --filter lab test"
},
"repository": {
"type": "git",
"url": "https://github.com/theisel/astro-portabletext.git"
},
"bugs": {
"url": "https://github.com/theisel/astro-portabletext/issues"
},
"homepage": "https://github.com/theisel/astro-portabletext#readme",
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"astro": "^7.2.2",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.11.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^4.1.1",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22.12.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.34.5",
"onFail": "error"
}
}
}