-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.59 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
{
"name": "@messai-io/mess-simulations",
"version": "0.1.0",
"description": "Physics-based simulation and modeling tools for Microbial Electrochemical Systems",
"license": "MIT",
"homepage": "https://github.com/Messai-io/MESS-Simulations",
"repository": {
"type": "git",
"url": "https://github.com/Messai-io/MESS-Simulations.git"
},
"bugs": {
"url": "https://github.com/Messai-io/MESS-Simulations/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./models": {
"import": "./dist/models/index.mjs",
"require": "./dist/models/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup && tsc --emitDeclarationOnly --declaration --rootDir src --outDir dist",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"microbial-fuel-cell",
"mfc",
"mes",
"electrochemistry",
"simulation",
"butler-volmer",
"biofilm",
"comsol",
"three-js"
],
"author": "MESSAI Community",
"devDependencies": {
"@types/node": "^20.0.0",
"@types/three": "^0.160.0",
"eslint": "^8.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"peerDependencies": {
"@react-three/fiber": ">=8",
"react": ">=18",
"three": ">=0.150.0"
},
"module": "dist/index.mjs"
}