-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.51 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
85
86
87
88
89
90
91
92
{
"name": "iapws-if97",
"version": "2.2.0",
"description": "TypeScript implementation of IAPWS-IF97 for water and steam properties, including forward/backward solvers, saturation states, and transport properties.",
"author": "jltonghui",
"repository": {
"type": "git",
"url": "git+https://github.com/jltonghui/iapws-if97.git"
},
"bugs": {
"url": "https://github.com/jltonghui/iapws-if97/issues"
},
"homepage": "https://github.com/jltonghui/iapws-if97#readme",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./transport": {
"types": "./dist/transport.d.ts",
"import": "./dist/transport.js",
"default": "./dist/transport.js"
},
"./regions": {
"types": "./dist/regions.d.ts",
"import": "./dist/regions.js",
"default": "./dist/regions.js"
},
"./saturation": {
"types": "./dist/saturation.d.ts",
"import": "./dist/saturation.js",
"default": "./dist/saturation.js"
},
"./boundaries": {
"types": "./dist/boundaries.d.ts",
"import": "./dist/boundaries.js",
"default": "./dist/boundaries.js"
},
"./detect": {
"types": "./dist/detect.d.ts",
"import": "./dist/detect.js",
"default": "./dist/detect.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"prebuild": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "tsc",
"test": "vitest run",
"test:package": "npm run build && node scripts/check-package.mjs",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:standards": "vitest run tests/standards-asme tests/standards-cn",
"test:standards:asme": "vitest run tests/standards-asme",
"test:standards:cn": "vitest run tests/standards-cn",
"prepack": "npm run test:package && npm test",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.0",
"typescript": "^5.4.0",
"vitest": "^4.1.0"
},
"keywords": [
"iapws",
"if97",
"steam",
"water",
"thermodynamics",
"properties",
"engineering"
],
"license": "MIT"
}