Skip to content

Commit

Permalink
Deno project metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
PoneyClairDeLune committed Jan 25, 2025
1 parent 02cc0c0 commit b55b8aa
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
29 changes: 29 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "@ltgc/kd-tree",
"version": "1.0.2"
"exports": {
"./kd-tree": "./dist/kd-tree.mjs"
},
"publish": {
"include": [
"dist/**",
"README.md"
]
},
"fmt": {
"useTabs": true,
"lineWidth": 200,
"indentWidth": 4,
"semiColons": true,
"exclude": [
"*"
]
},
"lint": {
"exclude": [
"*"
]
},
"nodeModulesDir": "none",
"npmRegistry": "http://127.0.0.1:80/"
}
6 changes: 6 additions & 0 deletions sh/publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
echo "Building..."
shx build
echo "Publishing to JSR..."
deno publish --allow-slow-types --allow-dirty --config ./deno.json
exit

0 comments on commit b55b8aa

Please sign in to comment.