-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "k-number-utils",
"description": "A TypeScript utility library for advanced mathematical operations, including BigInt conversions, type-safe numeric coercions, and deterministic string-to-number transformations.",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"lib/**/*",
"README.md",
"LICENSE"
],
"version": "1.0.2",
"private": false,
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.6.2"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/k-number-utils.git"
},
"keywords": [
"typescript",
"bigint",
"number-utils",
"type-safe",
"coercion",
"string-to-number",
"deterministic"
],
"scripts": {
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"test": "bun test --coverage **/*.test.ts",
"test:watch": "bun test --watch **/*.test.ts",
"lint": "bun run type-check",
"type-check": "tsc --noEmit",
"clean": "rm -rf lib/",
"prepublishOnly": "bun run clean && bun run build",
"deploy": "bun run prepublishOnly && bun publish",
"actions": "DOCKER_HOST=$(docker context inspect --format '{{.Endpoints.docker.Host}}') act",
"build": "tsc --project tsconfig.build.json"
}
}