anpord 0.0.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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Charlie Lamb
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # anpord
2
+
3
+ TypeScript SDK for [Anpord](https://anpord.com) — customer configuration for AI products.
4
+
5
+ > **Placeholder release.** This version reserves the package name. There is no
6
+ > client yet — the API surface lands in a future release. Watch this space.
7
+
8
+ ## Install
9
+
10
+ ```sh
11
+ npm install anpord
12
+ ```
13
+
14
+ ## License
15
+
16
+ MIT
package/dist/index.cjs ADDED
@@ -0,0 +1,9 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#region src/index.ts
3
+ /**
4
+ * Placeholder release. The client lands in a future version — this exists so
5
+ * the package name is reserved and consumers can pin something real.
6
+ */
7
+ const VERSION = "0.0.0";
8
+ //#endregion
9
+ exports.VERSION = VERSION;
@@ -0,0 +1,8 @@
1
+ //#region src/index.d.ts
2
+ /**
3
+ * Placeholder release. The client lands in a future version — this exists so
4
+ * the package name is reserved and consumers can pin something real.
5
+ */
6
+ declare const VERSION = "0.0.0";
7
+ //#endregion
8
+ export { VERSION };
@@ -0,0 +1,8 @@
1
+ //#region src/index.d.ts
2
+ /**
3
+ * Placeholder release. The client lands in a future version — this exists so
4
+ * the package name is reserved and consumers can pin something real.
5
+ */
6
+ declare const VERSION = "0.0.0";
7
+ //#endregion
8
+ export { VERSION };
package/dist/index.mjs ADDED
@@ -0,0 +1,8 @@
1
+ //#region src/index.ts
2
+ /**
3
+ * Placeholder release. The client lands in a future version — this exists so
4
+ * the package name is reserved and consumers can pin something real.
5
+ */
6
+ const VERSION = "0.0.0";
7
+ //#endregion
8
+ export { VERSION };
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "anpord",
3
+ "version": "0.0.0",
4
+ "description": "TypeScript SDK for Anpord — customer configuration for AI products.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "files": [
9
+ "dist",
10
+ "README.md",
11
+ "LICENSE"
12
+ ],
13
+ "main": "./dist/index.cjs",
14
+ "module": "./dist/index.mjs",
15
+ "types": "./dist/index.d.cts",
16
+ "exports": {
17
+ ".": {
18
+ "import": {
19
+ "types": "./dist/index.d.mts",
20
+ "default": "./dist/index.mjs"
21
+ },
22
+ "require": {
23
+ "types": "./dist/index.d.cts",
24
+ "default": "./dist/index.cjs"
25
+ }
26
+ },
27
+ "./package.json": "./package.json"
28
+ },
29
+ "keywords": [
30
+ "anpord",
31
+ "configuration",
32
+ "feature-flags",
33
+ "ai",
34
+ "sdk"
35
+ ],
36
+ "homepage": "https://anpord.com",
37
+ "engines": {
38
+ "node": ">=18"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "scripts": {
44
+ "build": "tsdown",
45
+ "typecheck": "tsc --project tsconfig.json --noEmit",
46
+ "test": "bun test --pass-with-no-tests",
47
+ "lint:publish": "publint --strict",
48
+ "prepublishOnly": "bun run build"
49
+ },
50
+ "devDependencies": {
51
+ "publint": "0.3.22",
52
+ "tsdown": "0.22.14",
53
+ "typescript": "catalog:"
54
+ }
55
+ }