-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 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
{
"name": "@adametherzlab/tank-level",
"version": "0.8.0",
"description": "Tank level calculator — volume from height for cylindrical, rectangular, conical & spherical vessels with strapping tables, fill rate, alarms & inventory",
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"test": "bun test",
"build": "bun build src/index.ts --outdir dist",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.5.0"
},
"keywords": [
"tank",
"level-sensor",
"volume",
"tank-gauging",
"strapping-table",
"calibration",
"fill-rate",
"tank-alarms",
"inventory",
"spherical-tank",
"lpg",
"iot",
"scada",
"process-control",
"chemical-engineering",
"typescript",
"bun",
"zero-dependency"
],
"author": "AdametherzLab",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AdametherzLab/tank-level.git"
},
"homepage": "https://github.com/AdametherzLab/tank-level#readme",
"bugs": {
"url": "https://github.com/AdametherzLab/tank-level/issues"
},
"engines": {
"node": ">=18"
},
"sideEffects": false
}