-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.95 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
{
"name": "elixir-data-viewer",
"version": "0.1.4",
"description": "A read-only web viewer for Elixir data structures with syntax highlighting, code folding, and line numbers. Powered by lezer-elixir.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"README.md"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"dev:landing": "vite --config vite.config.landing.ts",
"build": "vite build && tsc -p tsconfig.build.json",
"build:standalone": "vite build --config vite.config.standalone.ts",
"build:landing": "vite build --config vite.config.landing.ts",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"keywords": [
"elixir",
"data-viewer",
"syntax-highlighting",
"lezer",
"code-folding",
"read-only"
],
"license": "MIT",
"author": "Kevin Pan <kevin@feng19.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/feng19/elixir-data-viewer.git"
},
"homepage": "https://github.com/feng19/elixir-data-viewer#readme",
"bugs": {
"url": "https://github.com/feng19/elixir-data-viewer/issues"
},
"dependencies": {
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.0.0",
"lezer-elixir": "^1.1.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"typescript": "^5.4.0",
"vite": "^5.4.0",
"vite-plugin-css-injected-by-js": "^4.0.1"
},
"peerDependencies": {
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.0.0",
"lezer-elixir": "^1.1.0"
},
"peerDependenciesMeta": {
"lezer-elixir": {
"optional": false
},
"@lezer/common": {
"optional": false
},
"@lezer/highlight": {
"optional": false
}
}
}