-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 853 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 853 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
33
{
"name": "zerolocus62",
"version": "3.1.1",
"description": "Reference JavaScript implementation of the ZeroLocus62 v3.1 encoding format (release 3.1.1)",
"type": "module",
"author": "Pieter Belmans <pieterbelmans@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"files": [
"src"
],
"exports": {
".": "./src/index.js",
"./presentation": "./src/presentation.js"
},
"scripts": {
"build:site": "node ./scripts/build-pages.mjs",
"test": "node --test",
"site": "node ./scripts/serve-site.mjs",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"katex": "0.16.45",
"lie-js": "github:HomogeneousTools/Lie.js#37ae612eedebc2f4a002252b670f2fc9d6a7119f",
"marked": "17.0.6"
},
"devDependencies": {
"prettier": "^3.4.2"
}
}