-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
{
"version": "2.0.1",
"license": "MIT",
"name": "numeric-quantity",
"author": "Jake Boone <[email protected]>",
"description": "Number parser with support for mixed numbers, vulgar fractions, and Roman numerals",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/numeric-quantity.legacy-esm.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/numeric-quantity.d.mts",
"default": "./dist/numeric-quantity.mjs"
},
"require": {
"types": "./dist/cjs/numeric-quantity.cjs.development.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"types": "./dist/cjs/numeric-quantity.cjs.production.d.ts",
"unpkg": "./dist/numeric-quantity.umd.min.js",
"bugs": {
"url": "https://github.com/jakeboone02/numeric-quantity/issues"
},
"homepage": "https://github.com/jakeboone02/numeric-quantity",
"repository": {
"type": "git",
"url": "https://github.com/jakeboone02/numeric-quantity.git"
},
"keywords": [
"parse",
"number",
"convert",
"fraction",
"decimal",
"roman",
"numerals"
],
"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,json,ts}' 'src/*.*'"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/web": "^0.0.151",
"@types/bun": "^1.1.6",
"np": "^10.0.6",
"open": "^10.1.0",
"prettier": "3.3.2",
"prettier-plugin-organize-imports": "4.0.0",
"tsup": "^8.1.0",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=16"
}
}