-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 KB
/
package.json
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
{
"name": "@nurliman/base85",
"description": "Browser and Node.js-compatible Base85 encoder/decoder.",
"version": "2.0.12",
"type": "module",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": {
"name": "Nurliman Diara",
"email": "[email protected]",
"url": "https://nurliman.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/nurliman/base85.git"
},
"keywords": [
"ascii",
"base85",
"ascii85",
"z85",
"encoder",
"decoder",
"encode",
"decode",
"browser",
"node"
],
"files": [
"dist/"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"prebuild": "npm run check && npm run lint:fix",
"test": "bun test",
"check": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"lint-staged": "lint-staged",
"changeset": "changeset",
"version-packages": "changeset version",
"deno:sync-version": "bun ./scripts/syncDenoVersion.ts",
"deno:publish": "bunx jsr publish --allow-dirty",
"release": "npm run build && npm run test && changeset publish",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@tsconfig/recommended": "^1.0.8",
"@types/bun": "latest",
"@types/node": "^20",
"lefthook": "^1.9.2",
"lint-staged": "^15.2.11",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*.+(js|mjs|cjs|jsx|ts|cts|mts|tsx)": "biome check --write --no-errors-on-unmatched"
},
"trustedDependencies": [
"@biomejs/biome"
]
}