bentsignal-first-package-test 0.2.0

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.
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare function fn(): string;
3
+ //#endregion
4
+ export { fn };
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ //#region src/index.ts
2
+ function fn() {
3
+ return "Third feature test. try again. ooga booga";
4
+ }
5
+
6
+ //#endregion
7
+ export { fn };
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "bentsignal-first-package-test",
3
+ "type": "module",
4
+ "version": "0.2.0",
5
+ "description": "Typesafe access to environment variables in Convex",
6
+ "exports": {
7
+ ".": "./dist/index.mjs",
8
+ "./package.json": "./package.json"
9
+ },
10
+ "main": "./dist/index.mjs",
11
+ "module": "./dist/index.mjs",
12
+ "types": "./dist/index.d.mts",
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "devDependencies": {
17
+ "@changesets/changelog-github": "^0.5.2",
18
+ "@changesets/cli": "^2.29.8",
19
+ "oxfmt": "^0.20.0",
20
+ "oxlint": "^1.35.0",
21
+ "oxlint-tsgolint": "^0.10.0",
22
+ "tsdown": "^0.18.1",
23
+ "typescript": "^5.9.3"
24
+ },
25
+ "scripts": {
26
+ "build": "tsdown",
27
+ "dev": "tsdown --watch",
28
+ "lint": "oxlint --type-aware --type-check",
29
+ "lint:fix": "oxlint --type-aware --type-check --fix && oxfmt",
30
+ "fmt": "oxfmt",
31
+ "release": "changeset publish"
32
+ }
33
+ }