This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
{
"name": "astro-sidecar",
"version": "0.0.4",
"description": "Watch and execute TypeScript processes alongside your Astro development server. Useful for mocking, WebSocket, bundler…",
"keywords": [
"withastro",
"astro-integration",
"utility",
"side-loading",
"mocking",
"websocket",
"runner",
"server",
"development",
"tsx",
"concurrently"
],
"bugs": {
"url": "https://github.com/JulianCataldo/astro-sidecar/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JulianCataldo/astro-sidecar"
},
"license": "ISC",
"author": "Julian Cataldo",
"type": "module",
"main": "./dist/index.js",
"bin": {},
"files": [
"./dist/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist .turbo",
"dev": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 0"
},
"dependencies": {
"concurrently": "^7.6.0",
"tsx": "^3.12.5"
},
"peerDependencies": {
"tsx": "^3.12.5"
},
"devDependencies": {
"@types/eslint": "^8.21.2",
"@types/html-escaper": "^3.0.0",
"@types/node": "^18.15.3",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"astro": "^2.1.3",
"astro-eslint-parser": "^0.12.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-astro": "^0.24.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"webdev-configs": "^1.2.0"
},
"publishConfig": {
"access": "public"
}
}