ropegeo-common 1.0.0 → 1.0.1

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.
package/package.json CHANGED
@@ -1,12 +1,21 @@
1
1
  {
2
2
  "name": "ropegeo-common",
3
- "version": "1.0.0",
4
- "description": "A package for common code used by RopeGeo and its backend services",
3
+ "version": "1.0.1",
4
+ "description": "Shared types and utilities for RopeGeo and WebScraper",
5
5
  "license": "ISC",
6
- "author": "",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/yurst3/RopeGeo-Common"
9
+ },
7
10
  "type": "commonjs",
8
- "main": "index.js",
11
+ "main": "dist/index.js",
12
+ "types": "dist/index.d.ts",
9
13
  "scripts": {
14
+ "build": "tsc",
10
15
  "test": "echo \"Error: no test specified\" && exit 1"
11
- }
16
+ },
17
+ "devDependencies": {
18
+ "typescript": "^5.9.3"
19
+ },
20
+ "files": ["dist"]
12
21
  }
@@ -1,28 +0,0 @@
1
- name: Publish to npm
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
-
8
- permissions:
9
- id-token: write # Required for npm trusted publishing (OIDC)
10
- contents: read
11
-
12
- jobs:
13
- publish:
14
- runs-on: ubuntu-latest
15
- steps:
16
- - uses: actions/checkout@v4
17
-
18
- - name: Setup Node.js
19
- uses: actions/setup-node@v4
20
- with:
21
- node-version: "22"
22
- registry-url: "https://registry.npmjs.org"
23
-
24
- - name: Install dependencies
25
- run: npm install
26
-
27
- - name: Publish to npm
28
- run: npm publish