-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
{
"version": "3.0.0",
"name": "format-quantity",
"author": "Jake Boone <[email protected]>",
"description": "Number formatter for imperial measurements with support for vulgar fractions",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/format-quantity.legacy-esm.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/format-quantity.d.mts",
"default": "./dist/format-quantity.mjs"
},
"require": {
"types": "./dist/cjs/format-quantity.cjs.development.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"types": "./dist/cjs/format-quantity.cjs.production.d.ts",
"unpkg": "./dist/format-quantity.umd.min.js",
"license": "MIT",
"keywords": [
"recipe",
"ingredient",
"quantity",
"number",
"format",
"string",
"fractions",
"imperial",
"roman",
"numerals"
],
"bugs": {
"url": "https://github.com/jakeboone02/format-quantity/issues"
},
"homepage": "https://github.com/jakeboone02/format-quantity",
"repository": {
"type": "git",
"url": "https://github.com/jakeboone02/format-quantity"
},
"scripts": {
"start": "bun --hot ./server.ts",
"build": "tsup",
"docs": "typedoc",
"test": "bun test",
"watch": "bun test --watch",
"publish:npm": "np",
"pretty-print": "prettier --write '*.{html,ts,json}' 'src/*.*'"
},
"devDependencies": {
"@types/bun": "^1.1.6",
"@types/node": "^20.14.10",
"@types/web": "^0.0.151",
"np": "^10.0.6",
"open": "^10.1.0",
"prettier": "3.3.2",
"tsup": "^8.1.0",
"typedoc": "^0.26.3",
"typedoc-plugin-katex": "^0.1.2",
"typescript": "^5.5.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=16"
}
}