forked from modxcms/modAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 909 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 909 Bytes
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
{
"name": "mod-ai",
"source": "_build/js/src/index.ts",
"scripts": {
"build": "node esbuild.build.mjs",
"dev": "node esbuild.dev.mjs",
"lint": "eslint",
"changelog:pkg": "git cliff -c cliff_pkg.toml --output core/components/modai/docs/CHANGELOG.md --unreleased",
"changelog": "git cliff --output CHANGELOG.md"
},
"engines": {
"node": "22"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@jgoz/esbuild-plugin-typecheck": "^4.0.3",
"@types/markdown-it": "^14.1.2",
"esbuild": "^0.25.5",
"esbuild-copy-static-files": "^0.1.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"dependencies": {
"emitron": "^0.2.0",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0"
}
}