@bastani/atomic 0.5.0-2 → 0.5.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.
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "atomic-workflows",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "atomic-workflows",
8
+ "dependencies": {
9
+ "@bastani/atomic-workflows": "^0.4.56-0"
10
+ }
11
+ },
12
+ "node_modules/@bastani/atomic-workflows": {
13
+ "version": "0.4.56-0",
14
+ "resolved": "https://registry.npmjs.org/@bastani/atomic-workflows/-/atomic-workflows-0.4.56-0.tgz",
15
+ "integrity": "sha512-6JtZTcZLI5c/DnQFHiM5i4Ymm4T+iYBAtS7J/RbOBwge3kv9EEwzxYijfLhqoBt7VHnUSkWvYlcNFjNFdDwIvw==",
16
+ "license": "MIT",
17
+ "dependencies": {
18
+ "zod": "^4.3.6"
19
+ }
20
+ },
21
+ "node_modules/zod": {
22
+ "version": "4.3.6",
23
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
24
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
25
+ "license": "MIT",
26
+ "funding": {
27
+ "url": "https://github.com/sponsors/colinhacks"
28
+ }
29
+ }
30
+ }
31
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "atomic-workflows",
3
+ "private": true,
4
+ "type": "module",
5
+ "dependencies": {
6
+ "@bastani/atomic-workflows": "^0.4.56-0"
7
+ }
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bastani/atomic",
3
- "version": "0.5.0-2",
3
+ "version": "0.5.0-3",
4
4
  "description": "Configuration management CLI and SDK for coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -31,6 +31,7 @@
31
31
  },
32
32
  "files": [
33
33
  "src",
34
+ "tsconfig.json",
34
35
  "assets/settings.schema.json",
35
36
  ".claude/agents",
36
37
  ".opencode/agents",
@@ -43,7 +44,7 @@
43
44
  "build": "bun run build.ts",
44
45
  "test": "bun test ./src ./tests",
45
46
  "test:coverage": "bun test --coverage ./src ./tests",
46
- "typecheck": "bunx tsc --noEmit",
47
+ "typecheck": "bunx tsc --noEmit && bunx tsc -p tests --noEmit",
47
48
  "lint": "oxlint --config=oxlint.json src",
48
49
  "lint:fix": "oxlint --config=oxlint.json --fix src",
49
50
  "prepare": "lefthook install || true"
package/tsconfig.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "compilerOptions": {
3
+ // Environment setup & latest features
4
+ "lib": ["ESNext", "DOM"],
5
+ "target": "ESNext",
6
+ "module": "ESNext",
7
+ "jsx": "react-jsx",
8
+
9
+ // Bundler mode
10
+ "paths": {
11
+ "@/*": ["./src/*"]
12
+ },
13
+ "jsxImportSource": "@opentui/react",
14
+ "moduleResolution": "bundler",
15
+ "allowImportingTsExtensions": true,
16
+ "verbatimModuleSyntax": true,
17
+ "noEmit": true,
18
+
19
+ "types": ["bun"],
20
+
21
+ // Best practices
22
+ "strict": true,
23
+ "skipLibCheck": true,
24
+ "noFallthroughCasesInSwitch": true,
25
+ "noUncheckedIndexedAccess": true,
26
+ "noImplicitOverride": true,
27
+
28
+ // Some stricter flags (disabled by default)
29
+ "noUnusedLocals": false,
30
+ "noUnusedParameters": false,
31
+ "noPropertyAccessFromIndexSignature": false
32
+ },
33
+ "include": ["src"]
34
+ }