-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.04 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
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
{
"name": "@studiocms/html",
"version": "0.3.0",
"description": "Add HTML Support to your StudioCMS project with ease!",
"author": {
"name": "withstudiocms",
"url": "https://studiocms.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withstudiocms/studiocms.git",
"directory": "packages/@studiocms/html"
},
"contributors": [
"Adammatthiesen",
"jdtjenkins",
"dreyfus92",
"code.spirit"
],
"license": "MIT",
"keywords": [
"astro",
"astrocms",
"astrodb",
"astrostudio",
"astro-studio",
"astro-studiocms",
"cms",
"studiocms",
"plugin",
"studiocms-plugin"
],
"homepage": "https://studiocms.dev",
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsdown --config tsdown.config.ts --clean",
"dev": "tsdown --config tsdown.config.ts --no-clean",
"test": "vitest",
"effect-check": "pnpm effect-language-service diagnostics --project tsconfig.tspc.json",
"ci:effect-check": "pnpm effect-check --format github-actions",
"typecheck": "tspc -p tsconfig.tspc.json"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
},
"./v/types": {
"types": "./dist/virtual.d.ts"
},
"./editor": "./dist/components/editor.astro",
"./renderer": {
"types": "./dist/components/render.d.ts",
"default": "./dist/components/render.js"
}
},
"type": "module",
"dependencies": {
"codemirror": "5.65.19",
"katex": "^0.17.0",
"suneditor": "^3.1.4"
},
"devDependencies": {
"@withstudiocms/internal_helpers": "workspace:^",
"@types/codemirror": "5.60.16",
"@types/node": "catalog:",
"astro": "catalog:studiocms-peerlock",
"studiocms": "workspace:^",
"vite": "catalog:studiocms-peerlock"
},
"peerDependencies": {
"effect": "catalog:effect"
}
}