-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.7 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
{
"name": "parse-ingredient",
"author": "Jake Boone",
"version": "1.2.1",
"license": "MIT",
"description": "Recipe ingredient parser with support for mixed numbers and vulgar fractions",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/parse-ingredient.legacy-esm.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/parse-ingredient.d.mts",
"default": "./dist/parse-ingredient.mjs"
},
"require": {
"types": "./dist/cjs/parse-ingredient.cjs.development.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"types": "./dist/cjs/parse-ingredient.cjs.production.d.ts",
"unpkg": "./dist/parse-ingredient.umd.min.js",
"keywords": [
"parse",
"recipe",
"ingredient",
"quantity",
"number"
],
"bugs": {
"url": "https://github.com/jakeboone02/parse-ingredient/issues"
},
"homepage": "https://github.com/jakeboone02/parse-ingredient",
"repository": {
"type": "git",
"url": "https://github.com/jakeboone02/parse-ingredient"
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "bun ./server.ts",
"build": "tsup",
"docs": "typedoc",
"test": "bun test",
"watch": "bun test --watch",
"pretty-print": "prettier --write '*.{html,json,ts}' './src/*.*'",
"publish:npm": "np",
"publish:demo": "bun ./gh-pages.publish.js"
},
"devDependencies": {
"@types/web": "^0.0.151",
"@types/bun": "^1.1.6",
"np": "^10.0.6",
"open": "^10.1.0",
"prettier": "3.3.2",
"tsup": "^8.1.0",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
},
"dependencies": {
"numeric-quantity": "^2.0.1"
}
}