-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.13 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
82
83
84
85
86
87
{
"name": "sveltekit-adapter-html-like",
"description": "SvelteKit adapter for HTML-like template engines such as PHP, Blade, Handlebars, etc.",
"version": "0.3.2",
"repository": {
"type": "git",
"url": "https://github.com/idleberg/sveltekit-adapter-html-like"
},
"license": "MIT",
"keywords": [
"sveltekit-adapter",
"svelte",
"sveltekit",
"php",
"blade",
"embedded ruby",
"erb",
"moustache",
"handlebars",
"ejs"
],
"type": "module",
"files": [
"adapter.js",
"index.js",
"index.d.ts",
"platforms.js",
"LICENSE",
"README.md"
],
"main": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"types": "index.d.ts",
"scripts": {
"prepare": "husky install",
"check-format": "prettier --check . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint:js": "eslint --ignore-path .gitignore \"**/*.{ts,js,svelte}\"",
"lint": "npm-run-all --parallel lint:*",
"test": "npm run lint"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"cosmiconfig": "^8.3.6",
"html-minifier-terser": "^7.2.0",
"jsdom": "^20.0.3",
"json5": "^2.2.3",
"prettier": "^2.8.8",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@sveltejs/kit": "^2.0.0",
"@types/html-minifier-terser": "^7.0.2",
"@types/jsdom": "^20.0.1",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"npm-run-all": "^4.1.5",
"remark-cli": "^11.0.0",
"remark-preset-lint-recommended": "^6.1.3",
"remark-preset-prettier": "^2.0.1",
"sirv": "^2.0.3",
"svelte": "^3.59.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0.0"
},
"lint-staged": {
"*.(js|ts|json)": [
"eslint --cache --fix",
"prettier --write"
],
"*.md": "prettier --write"
},
"packageManager": "pnpm@9.0.5+sha512.a722575c18fd791f9ef71e387c6e16cc03c90d859b9b0998d0428ca0e3220828b32a96e6de73cea34edbc0f50824771b1a69c7ea36b86daa3b89c7e6d9a3d912"
}