-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "weird64",
"version": "0.1.0",
"description": "A compact Base64-like encoding for arbitrary-length bit sequences using sentinel bits",
"keywords": [
"base64",
"binary",
"bit-array",
"encoding",
"serialization",
"url-safe"
],
"homepage": "https://github.com/ziioai/weird64#readme",
"bugs": {
"url": "https://github.com/ziioai/weird64/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziioai/weird64.git"
},
"author": "ZIIO AI",
"license": "MIT",
"type": "module",
"sideEffects": false,
"files": ["dist", "LICENSE"],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=18.18"
},
"packageManager": "pnpm@11.23.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"test": "vitest run",
"test:runtime": "node tests/runtime.mjs",
"test:coverage": "vitest run --coverage",
"docs:api": "typedoc",
"docs:dev": "pnpm docs:api && vitepress dev press",
"docs:build": "pnpm docs:api && vitepress build press",
"docs:preview": "vitepress preview press",
"check:package": "pnpm build && pnpm test:runtime && publint && attw --pack .",
"verify": "pnpm check && pnpm typecheck && pnpm test:coverage && pnpm check:package && pnpm docs:build",
"prepack": "pnpm build"
},
"dependencies": {
"es-toolkit": "^1.52.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@biomejs/biome": "^1.9.4",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^5.0.1",
"publint": "^0.3.24",
"tsup": "^8.5.1",
"typedoc": "^0.28.20",
"typescript": "^6.0.0",
"vitepress": "^1.6.4",
"vitest": "^5.0.1"
}
}