ursprung 0.0.1 → 0.0.3

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,13 +1,14 @@
1
1
  {
2
2
  "name": "ursprung",
3
- "version": "0.0.1",
4
- "module": "index.ts",
5
- "type": "module",
6
- "private": false,
7
- "devDependencies": {
8
- "@types/bun": "latest"
3
+ "version": "0.0.3",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/bndkt/ursprung.git",
7
+ "directory": "packages/ursprung"
9
8
  },
10
- "peerDependencies": {
11
- "typescript": "^5"
9
+ "type": "module",
10
+ "exports": "./src/index.ts",
11
+ "scripts": {
12
+ "typecheck": "tsc --noEmit"
12
13
  }
13
14
  }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export const name = "Ursprung";
package/README.md DELETED
@@ -1 +0,0 @@
1
- # ursprung
package/index.ts DELETED
@@ -1 +0,0 @@
1
- console.log("Hello via Bun!");
package/tsconfig.json DELETED
@@ -1,30 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- // Environment setup & latest features
4
- "lib": ["ESNext"],
5
- "target": "ESNext",
6
- "module": "Preserve",
7
- "moduleDetection": "force",
8
- "jsx": "react-jsx",
9
- "allowJs": true,
10
- "types": ["bun"],
11
-
12
- // Bundler mode
13
- "moduleResolution": "bundler",
14
- "allowImportingTsExtensions": true,
15
- "verbatimModuleSyntax": true,
16
- "noEmit": true,
17
-
18
- // Best practices
19
- "strict": true,
20
- "skipLibCheck": true,
21
- "noFallthroughCasesInSwitch": true,
22
- "noUncheckedIndexedAccess": true,
23
- "noImplicitOverride": true,
24
-
25
- // Some stricter flags (disabled by default)
26
- "noUnusedLocals": false,
27
- "noUnusedParameters": false,
28
- "noPropertyAccessFromIndexSignature": false
29
- }
30
- }