tenfold 0.1.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,54 @@
1
+ import {
2
+ COMPONENT_ICONS,
3
+ ClaudeSettingsSchema,
4
+ ConfigManager,
5
+ CredentialsSchema,
6
+ DEFAULT_API_CONFIG,
7
+ HookDefinitionSchema,
8
+ HookEntrySchema,
9
+ InstalledComponentSchema,
10
+ InstalledManifestSchema,
11
+ McpConfigSchema,
12
+ McpServerEntrySchema,
13
+ TargetFileSchema,
14
+ TenfoldApiClient,
15
+ TenfoldMetadataSchema,
16
+ createEmptyManifest,
17
+ createProgram,
18
+ getApiClient,
19
+ getComponentIcon,
20
+ getConfigManager,
21
+ isAgentContent,
22
+ isCommandContent,
23
+ isHookContent,
24
+ isInstructionContent,
25
+ isMcpServerContent,
26
+ isSkillContent
27
+ } from "../chunk-C53TSGQL.js";
28
+ export {
29
+ COMPONENT_ICONS,
30
+ ClaudeSettingsSchema,
31
+ ConfigManager,
32
+ CredentialsSchema,
33
+ DEFAULT_API_CONFIG,
34
+ HookDefinitionSchema,
35
+ HookEntrySchema,
36
+ InstalledComponentSchema,
37
+ InstalledManifestSchema,
38
+ McpConfigSchema,
39
+ McpServerEntrySchema,
40
+ TargetFileSchema,
41
+ TenfoldApiClient,
42
+ TenfoldMetadataSchema,
43
+ createEmptyManifest,
44
+ createProgram,
45
+ getApiClient,
46
+ getComponentIcon,
47
+ getConfigManager,
48
+ isAgentContent,
49
+ isCommandContent,
50
+ isHookContent,
51
+ isInstructionContent,
52
+ isMcpServerContent,
53
+ isSkillContent
54
+ };
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "tenfold",
3
+ "version": "0.1.0",
4
+ "description": "Package manager for Claude Code components",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "bin": {
10
+ "tenfold": "./dist/bin/tenfold.js"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.js",
15
+ "types": "./dist/index.d.ts"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "build": "tsup src/index.ts bin/tenfold.ts --format esm --dts --clean --outDir dist",
20
+ "dev": "tsx bin/tenfold.ts",
21
+ "test": "vitest run",
22
+ "test:watch": "vitest",
23
+ "lint": "eslint src/",
24
+ "typecheck": "tsc --noEmit"
25
+ },
26
+ "dependencies": {
27
+ "commander": "^12.1.0",
28
+ "@inquirer/prompts": "^7.2.0",
29
+ "chalk": "^5.3.0",
30
+ "ora": "^8.1.1",
31
+ "zod": "^3.24.0",
32
+ "semver": "^7.6.3",
33
+ "boxen": "^8.0.1",
34
+ "cli-table3": "^0.6.5",
35
+ "figlet": "^1.8.0",
36
+ "gradient-string": "^3.0.0",
37
+ "listr2": "^8.2.5",
38
+ "terminal-link": "^3.0.0"
39
+ },
40
+ "devDependencies": {
41
+ "@types/figlet": "^1.7.0",
42
+ "@types/gradient-string": "^1.1.6",
43
+ "@types/node": "^20.14.0",
44
+ "@types/semver": "^7.5.8",
45
+ "tsup": "^8.3.5",
46
+ "tsx": "^4.21.0",
47
+ "typescript": "^5.8.0",
48
+ "vitest": "^2.1.8"
49
+ },
50
+ "engines": {
51
+ "node": ">=18.0.0"
52
+ },
53
+ "keywords": [
54
+ "claude",
55
+ "claude-code",
56
+ "ai",
57
+ "package-manager",
58
+ "components",
59
+ "hooks",
60
+ "mcp"
61
+ ],
62
+ "author": "Tenfold",
63
+ "license": "MIT"
64
+ }