-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "murm-ui",
"version": "0.2.0",
"description": "A zero-framework, vanilla TypeScript chat interface for LLMs.",
"type": "module",
"scripts": {
"lint": "biome check .",
"format": "biome format --write .",
"check": "biome check . && npm run check:types",
"check:types": "tsc --noEmit && tsc -p docs/tsconfig.json && tsc -p src/tsconfig.test.json",
"dev": "esbuild example/app.ts --bundle --outfile=example/bundle.js --servedir=example",
"clean": "node scripts/clean.js",
"build": "npm run build:lib",
"build:lib": "npm run clean && tsc && node scripts/fix-esm-imports.js && npm run copy:css",
"copy:css": "node scripts/copy-css.js",
"test": "node --import ./scripts/register-test-loaders.js --import tsx --test \"src/**/*.test.ts\"",
"pack:dry": "node scripts/pack-dry-run.js",
"verify": "npm run check && npm test && npm run build && node scripts/verify-package.js && npm run pack:dry",
"prepublishOnly": "npm run verify",
"build:example": "esbuild example/app.ts --bundle --outfile=example/index.js --minify --target=es2018",
"build:docs": "node scripts/build-docs.js",
"build:demo": "npm run build && npm run build:docs && node scripts/build-demo.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./with-css": {
"types": "./dist/with-css.d.ts",
"import": "./dist/with-css.js",
"default": "./dist/with-css.js"
},
"./highlighter": {
"types": "./dist/highlighter/index.d.ts",
"import": "./dist/highlighter/index.js",
"default": "./dist/highlighter/index.js"
},
"./highlighter/languages": {
"types": "./dist/highlighter/languages/index.d.ts",
"import": "./dist/highlighter/languages/index.js",
"default": "./dist/highlighter/languages/index.js"
},
"./highlighter/*.css": "./dist/highlighter/*.css",
"./highlighter/*": {
"types": "./dist/highlighter/*.d.ts",
"import": "./dist/highlighter/*.js",
"default": "./dist/highlighter/*.js"
},
"./styles/*.css": "./dist/styles/*.css",
"./plugins/*.css": "./dist/plugins/*.css",
"./plugins/*": {
"types": "./dist/plugins/*/*-plugin.d.ts",
"import": "./dist/plugins/*/*-plugin.js",
"default": "./dist/plugins/*/*-plugin.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"docs/guide.md",
"docs/chat-shell.html"
],
"directories": {
"doc": "docs"
},
"sideEffects": [
"**/*.css",
"./dist/with-css.js",
"./dist/plugins/*/*-plugin.js"
],
"keywords": [
"chat",
"chat-ui",
"llm",
"typescript",
"vanilla-js"
],
"author": "Lev Morozov",
"license": "MIT",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/levmv/murm-ui.git"
},
"bugs": {
"url": "https://github.com/levmv/murm-ui/issues"
},
"homepage": "https://levmv.github.io/murm-ui/",
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"esbuild": "^0.27.4",
"jsdom": "^29.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"marked": "^17.0.5"
}
}