-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28b77dd
commit 3d45f30
Showing
76 changed files
with
82 additions
and
293 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
node_modules | ||
.DS_Store | ||
|
||
*.js | ||
*.d.ts | ||
*.map |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,68 +1,16 @@ | ||
{ | ||
"name": "mauss", | ||
"version": "0.7.2", | ||
"description": "fast and efficient type-safe SDK", | ||
"repository": "github:alchemauss/mauss", | ||
"author": "Ignatius Bagus", | ||
"license": "MIT", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"clean": "git add * && git clean -dfx -e node_modules", | ||
"format": "prettier -w . --plugin=prettier-plugin-sort-package-json", | ||
"check": "pnpm check:code && pnpm check:style", | ||
"check:code": "pnpm build:files --noEmit", | ||
"check:style": "prettier -c . --plugin=prettier-plugin-sort-package-json", | ||
"test": "pnpm test:unit", | ||
"test:unit": "uvu -r tsm src \"(spec\\.ts)\"", | ||
"build:types": "tsm scripts/compile-types.ts", | ||
"build:files": "tsc --project src", | ||
"prepublishOnly": "pnpm build:types && pnpm build:files" | ||
"check": "pnpm --filter \"./workspace/*\" check", | ||
"format": "pnpm --filter \"./workspace/*\" format", | ||
"test": "pnpm --filter \"./workspace/*\" test" | ||
}, | ||
"typings": "./index.d.ts", | ||
"exports": { | ||
".": "./src/core/index.js", | ||
"./api": "./src/api/index.js", | ||
"./bits": "./src/bits/index.js", | ||
"./compare": "./src/compare/index.js", | ||
"./csv": "./src/csv/index.js", | ||
"./date": "./src/date/index.js", | ||
"./guards": "./src/guards/index.js", | ||
"./math": "./src/math/index.js", | ||
"./random": "./src/random/index.js", | ||
"./std": "./src/std/index.js", | ||
"./web": "./src/web/index.js", | ||
"./typings": "./src/typings/index.d.ts", | ||
"./package.json": "./package.json", | ||
"./prettier.json": "./prettier.json", | ||
"./tsconfig.json": "./tsconfig.json" | ||
}, | ||
"files": [ | ||
"src/**/*.js", | ||
"index.d.ts", | ||
"index.d.ts.map", | ||
"prettier.json", | ||
"tsconfig.json" | ||
], | ||
"packageManager": "[email protected]", | ||
"prettier": "./prettier.json", | ||
"keywords": [ | ||
"zero-dependency", | ||
"strongly-typed", | ||
"type-safe", | ||
"fast", | ||
"efficient", | ||
"functional", | ||
"declarative", | ||
"modular", | ||
"reusable", | ||
"standard", | ||
"typings", | ||
"opinionated", | ||
"settings" | ||
], | ||
"prettier": "./workspace/mauss/prettier.json", | ||
"devDependencies": { | ||
"@types/node": "^20.14.9", | ||
"dts-buddy": "^0.5.0", | ||
"prettier": "^3.3.2", | ||
"prettier-plugin-sort-package-json": "^0.2.0", | ||
"tsm": "^2.3.0", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,2 @@ | ||
packages: | ||
- 'workspace/*' |
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,3 @@ | ||
*.js | ||
*.d.ts | ||
*.map |
Oops, something went wrong.