-
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) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.85 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": "convnum",
"version": "0.2.7",
"description": "Convert between various number representations, numeral systems",
"keywords": [
"number",
"numeral",
"numerical",
"sequence",
"ordinal",
"convert",
"converter",
"conversion",
"utils",
"date",
"language",
"transform"
],
"homepage": "https://convnum.tomchen.org/",
"bugs": {
"url": "https://github.com/tomchen/convnum/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tomchen/convnum.git"
},
"license": "MIT",
"author": "Tom Chen <tomchen.org@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"unpkg": "dist/index.global.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"checkall": "bun run lint && bun run typecheck && bun run format && bun test",
"docs": "typedoc",
"format": "prettier --write src test",
"lint": "eslint src test --fix",
"test": "bun test",
"typecheck": "tsc --noEmit",
"version": "bun scripts/bump.ts"
},
"browserslist": [
">0%"
],
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/bun": "^1.2.17",
"date-fns": "^4.1.0",
"eslint": "^9.29.0",
"eslint-plugin-compat": "^6.0.2",
"prettier": "^3.6.0",
"semver-ts": "^1.0.3",
"terser": "^5.43.1",
"tsup": "^8.5.0",
"typedoc": "^0.28.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"packageManager": "bun@1.2.17",
"engines": {
"node": ">=0.10.0"
},
"publishConfig": {
"access": "public"
}
}