-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(core): move to deno 2 and refactor usages
- Loading branch information
1 parent
6b6bbb8
commit ca0cf82
Showing
15 changed files
with
547 additions
and
518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"name": "@hyper63/core", | ||
"version": "4.3.3", | ||
"exports": "./mod.ts", | ||
"tasks": { | ||
"test": "deno lint && deno fmt --check && deno test -A --no-check", | ||
"cache": "deno install --entrypoint mod.ts" | ||
}, | ||
"imports": { | ||
"ramda": "npm:[email protected]", | ||
"crocks": "npm:[email protected]", | ||
"cuid": "npm:cuid@3", | ||
"ms": "npm:ms@2", | ||
"zod": "npm:[email protected]", | ||
"@hyper63/port-data": "jsr:@hyper63/[email protected]", | ||
"@hyper63/port-cache": "jsr:@hyper63/[email protected]", | ||
"@hyper63/port-storage": "jsr:@hyper63/[email protected]", | ||
"@hyper63/port-queue": "jsr:@hyper63/[email protected]", | ||
"@hyper63/port-search": "jsr:@hyper63/[email protected]", | ||
"@hyper63/port-crawler": "jsr:@hyper63/[email protected]", | ||
"@hyper63/port-hooks": "jsr:@hyper63/[email protected]", | ||
"@hyper63/utils": "jsr:@hyper63/[email protected]/mod.js", | ||
"@std/assert": "jsr:@std/assert@1", | ||
"@std/encoding": "jsr:@std/encoding@1", | ||
"@std/path": "jsr:@std/path@1", | ||
"@std/fs": "jsr:@std/fs@1" | ||
}, | ||
"fmt": { | ||
"include": [ | ||
"./" | ||
], | ||
"lineWidth": 100, | ||
"singleQuote": true, | ||
"semiColons": false | ||
}, | ||
"lint": { | ||
"rules": { | ||
"exclude": [ | ||
"no-slow-types" | ||
] | ||
} | ||
}, | ||
"publish": { | ||
"include": [ | ||
"./*", | ||
"./lib/**/*", | ||
"./utils/**/*" | ||
], | ||
"exclude": [ | ||
"**/*.test.ts" | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.