-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 887 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 887 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
34
35
36
{
"name": "milimg",
"description": "Reference encoder & decoder implementation of the milimg format.",
"version": "1.0.1",
"main": "lib/index.js",
"type": "module",
"files": [
"lib"
],
"scripts": {
"build": "rolldown -c rolldown.config.js",
"publish": "yarn npm publish",
"lint": "biome check && biome lint",
"lint-fix": "biome format --write && biome lint --write"
},
"license": "MPL-2.0",
"homepage": "https://github.com/Milforge/milimg.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Milforge/milimg.js"
},
"keywords": [
"milimg"
],
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^25.0.3",
"rolldown": "1.0.0-rc.2",
"rolldown-plugin-dts": "^0.21.7",
"typescript": "^5.9.3"
},
"dependencies": {
"buffer": "^6.0.3"
},
"packageManager": "yarn@4.12.0"
}