@jtgtools/xbeam 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +27 -12
package/README.md CHANGED
@@ -15,10 +15,11 @@ A fast Euler-Bernoulli beam finite element solver in TypeScript with chart-ready
15
15
 
16
16
  ## Install
17
17
 
18
- ```bash
19
- npm install
20
- npm run build
21
- ```
18
+ ```bash
19
+ npm install @jtgtools/xbeam
20
+ ```
21
+
22
+ For local development, clone the repo, then run `npm install` and `npm run build`.
22
23
 
23
24
  ## Scripts
24
25
 
package/package.json CHANGED
@@ -1,8 +1,25 @@
1
1
  {
2
- "name": "@jtgtools/xbeam",
3
- "version": "0.0.1",
4
- "description": "Fast Euler-Bernoulli beam FEM solver with chart-ready results",
5
- "type": "module",
2
+ "name": "@jtgtools/xbeam",
3
+ "version": "0.0.2",
4
+ "description": "Fast Euler-Bernoulli beam FEM solver with chart-ready results",
5
+ "license": "MIT",
6
+ "author": "JTG Tools",
7
+ "keywords": [
8
+ "beam",
9
+ "fem",
10
+ "finite-element",
11
+ "structural-engineering",
12
+ "euler-bernoulli"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/jtgtools/xbeam.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/jtgtools/xbeam/issues"
20
+ },
21
+ "homepage": "https://github.com/jtgtools/xbeam#readme",
22
+ "type": "module",
6
23
  "main": "dist/index.cjs",
7
24
  "module": "dist/index.js",
8
25
  "types": "dist/index.d.ts",
@@ -21,11 +38,9 @@
21
38
  "test:watch": "vitest",
22
39
  "bench": "vitest bench"
23
40
  },
24
- "dependencies": {
25
- "tsup": "^8.5.1",
26
- "typescript": "^6.0.2"
27
- },
28
- "devDependencies": {
29
- "vitest": "^4.1.2"
30
- }
31
- }
41
+ "devDependencies": {
42
+ "tsup": "^8.5.1",
43
+ "typescript": "^6.0.2",
44
+ "vitest": "^4.1.2"
45
+ }
46
+ }