forked from FEAScript/FEAScript-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.74 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
{
"name": "feascript",
"version": "0.1.1",
"description": "A lightweight finite element simulation library built in JavaScript for browser-based physics and engineering simulations",
"main": "dist/feascript.cjs.js",
"module": "dist/feascript.esm.js",
"browser": "dist/feascript.umd.js",
"exports": {
"import": "./dist/feascript.esm.js",
"require": "./dist/feascript.cjs.js"
},
"files": [
"dist",
"src"
],
"types": "dist/types/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "echo \"No tests configured\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FEAScript/FEAScript-core.git"
},
"keywords": [
"finite element",
"simulation",
"javascript",
"web",
"FEA",
"FEM",
"finite element analysis",
"finite element method"
],
"author": "Nikolaos Chamakos <nikoscham@gmail.com> (https://www.npmjs.com/~nikoscham)",
"contributors": [
{
"name": "sridhar-mani",
"url": "https://www.npmjs.com/~sridhar-mani"
}
],
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/FEAScript/FEAScript-core/issues"
},
"homepage": "https://github.com/FEAScript/FEAScript-core#readme",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"mathjs": "^11.12.0",
"plotly.js": "^2.27.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/estree": "^1.0.7",
"mathjs": "^11.12.0",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.8.3"
}
}