-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·49 lines (49 loc) · 1.15 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
{
"name": "astro-pintora",
"version": "0.0.2",
"description": "An Astro component for Pintora diagrams",
"type": "module",
"exports": {
".": "./index.ts"
},
"files": [
"src",
"index.ts"
],
"keywords": [
"astro-component",
"pintora",
"mermaid",
"diagram",
"flowchart",
"charts"
],
"homepage": "https://github.com/tex0l/astro-pintora",
"scripts": {
"lint": "eslint . --ext .ts,.js,.astro src",
"dev": "cd example && astro dev"
},
"devDependencies": {
"@types/eslint": "^8.44.8",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"astro": "^4.2.4",
"astro-eslint-parser": "^0.16.0",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-astro": "^0.31.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.3.2"
},
"peerDependencies": {
"astro": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"@pintora/cli": "^0.6.3",
"@pintora/standalone": "^0.6.3"
},
"license": "MIT"
}