-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "@se-oss/base32",
"version": "1.0.0",
"description": "A simple base32 (RFC 4648 and Crockford) encoder and decoder.",
"keywords": [
"base32",
"rfc4648",
"crockford",
"encoder",
"decoder"
],
"homepage": "https://github.com/shahradelahi/base32",
"repository": "github:shahradelahi/base32",
"license": "MIT",
"author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"!**/*.d.cts"
],
"scripts": {
"build": "tsup",
"clean": "git clean -dfx node_modules dist .tsbuildinfo",
"dev": "tsup --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm typecheck && eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "pnpm build && pnpm lint && pnpm format:check && pnpm test",
"test": "vitest --run",
"typecheck": "tsc --noEmit"
},
"prettier": "@shahrad/prettier-config",
"devDependencies": {
"@shahrad/eslint-config": "^1.0.0",
"@shahrad/prettier-config": "^1.2.2",
"@shahrad/tsconfig": "^1.2.0",
"@types/node": "^24.3.0",
"eslint": "^9.34.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.15.0"
}