elixir-data-viewer 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "elixir-data-viewer",
3
+ "version": "0.1.0",
4
+ "description": "A read-only web viewer for Elixir data structures with syntax highlighting, code folding, and line numbers. Powered by lezer-elixir.",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs",
13
+ "types": "./dist/index.d.ts"
14
+ },
15
+ "./style.css": "./dist/style.css"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md"
20
+ ],
21
+ "sideEffects": [
22
+ "**/*.css"
23
+ ],
24
+ "scripts": {
25
+ "dev": "vite",
26
+ "build": "vite build && tsc -p tsconfig.build.json",
27
+ "build:standalone": "vite build --config vite.config.standalone.ts",
28
+ "preview": "vite preview",
29
+ "prepublishOnly": "npm run build"
30
+ },
31
+ "keywords": [
32
+ "elixir",
33
+ "data-viewer",
34
+ "syntax-highlighting",
35
+ "lezer",
36
+ "code-folding",
37
+ "read-only"
38
+ ],
39
+ "license": "MIT",
40
+ "author": "Kevin Pan <kevin@feng19.com>",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/feng19/elixir-data-viewer.git"
44
+ },
45
+ "homepage": "https://github.com/feng19/elixir-data-viewer#readme",
46
+ "bugs": {
47
+ "url": "https://github.com/feng19/elixir-data-viewer/issues"
48
+ },
49
+ "dependencies": {
50
+ "@lezer/common": "^1.0.0",
51
+ "@lezer/highlight": "^1.0.0",
52
+ "lezer-elixir": "^1.1.0"
53
+ },
54
+ "devDependencies": {
55
+ "@types/node": "^25.5.2",
56
+ "typescript": "^5.4.0",
57
+ "vite": "^5.4.0",
58
+ "vite-plugin-css-injected-by-js": "^4.0.1"
59
+ },
60
+ "peerDependencies": {
61
+ "@lezer/common": "^1.0.0",
62
+ "@lezer/highlight": "^1.0.0",
63
+ "lezer-elixir": "^1.1.0"
64
+ },
65
+ "peerDependenciesMeta": {
66
+ "lezer-elixir": {
67
+ "optional": false
68
+ },
69
+ "@lezer/common": {
70
+ "optional": false
71
+ },
72
+ "@lezer/highlight": {
73
+ "optional": false
74
+ }
75
+ }
76
+ }