@openpkg-ts/sdk 0.1.0 → 0.30.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.
Files changed (4) hide show
  1. package/README.md +106 -81
  2. package/dist/index.d.ts +1377 -43
  3. package/dist/index.js +5816 -1921
  4. package/package.json +22 -22
package/package.json CHANGED
@@ -1,59 +1,59 @@
1
1
  {
2
2
  "name": "@openpkg-ts/sdk",
3
- "version": "0.1.0",
4
- "description": "TypeScript package specification SDK",
3
+ "version": "0.30.1",
4
+ "description": "TypeScript API extraction SDK - programmatic primitives for OpenPkg specs",
5
5
  "keywords": [
6
+ "openpkg",
6
7
  "typescript",
7
- "documentation",
8
+ "api-extractor",
8
9
  "sdk",
9
- "openpkg",
10
- "package-analysis"
10
+ "type-extraction"
11
11
  ],
12
- "homepage": "https://github.com/openpkg/openpkg#readme",
12
+ "homepage": "https://github.com/ryanwaits/openpkg-ts#readme",
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git+https://github.com/openpkg/openpkg.git",
15
+ "url": "git+https://github.com/ryanwaits/openpkg-ts.git",
16
16
  "directory": "packages/sdk"
17
17
  },
18
18
  "license": "MIT",
19
19
  "author": "Ryan Waits",
20
20
  "type": "module",
21
21
  "main": "./dist/index.js",
22
- "module": "./dist/index.js",
23
22
  "types": "./dist/index.d.ts",
24
23
  "exports": {
25
24
  ".": {
26
25
  "import": "./dist/index.js",
27
26
  "types": "./dist/index.d.ts"
28
- },
29
- "./types": {
30
- "import": "./dist/types/index.js",
31
- "types": "./dist/types/index.d.ts"
32
27
  }
33
28
  },
29
+ "files": [
30
+ "dist"
31
+ ],
34
32
  "scripts": {
35
33
  "build": "bunup",
36
34
  "dev": "bunup --watch",
37
35
  "lint": "biome check src/",
38
36
  "lint:fix": "biome check --write src/",
39
- "format": "biome format --write src/"
37
+ "format": "biome format --write src/",
38
+ "test": "bun test"
40
39
  },
41
- "files": [
42
- "dist"
43
- ],
44
40
  "dependencies": {
45
- "@openpkg-ts/spec": "^0.1.0",
46
- "typescript": "^5.0.0",
47
- "zod": "^4.0.5"
41
+ "@openpkg-ts/spec": "^0.27.1",
42
+ "typescript": "^5.0.0"
43
+ },
44
+ "peerDependencies": {
45
+ "shiki": "^1.0.0"
46
+ },
47
+ "peerDependenciesMeta": {
48
+ "shiki": {
49
+ "optional": true
50
+ }
48
51
  },
49
52
  "devDependencies": {
50
53
  "@types/bun": "latest",
51
54
  "@types/node": "^20.0.0",
52
55
  "bunup": "latest"
53
56
  },
54
- "peerDependencies": {
55
- "typescript": "^5"
56
- },
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  }