@keystrokehq/cli 0.1.46 → 0.1.47
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/README.md +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/dist/templates/hello-world/README.md +1 -2
- package/dist/templates/hello-world/package.json +4 -1
- package/dist/templates/hello-world/tsconfig.json +14 -1
- package/package.json +3 -6
- package/dist/configs/tsconfig.base.json +0 -23
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A Keystroke project — agents, workflows, actions, and triggers live in `src/`.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
`@keystrokehq/keystroke`, `zod`, and `@keystrokehq/cli`.
|
|
5
|
+
Lint, typecheck, and test configs live in the CLI; this project only adds the packages they need.
|
|
7
6
|
|
|
8
7
|
```bash
|
|
9
8
|
pnpm install
|
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"esModuleInterop": true,
|
|
6
|
+
"skipLibCheck": true,
|
|
7
|
+
"isolatedModules": true,
|
|
8
|
+
"moduleDetection": "force",
|
|
9
|
+
"verbatimModuleSyntax": true,
|
|
10
|
+
"noUncheckedIndexedAccess": true,
|
|
11
|
+
"moduleResolution": "bundler",
|
|
12
|
+
"module": "ESNext",
|
|
13
|
+
"target": "ES2022",
|
|
14
|
+
"lib": ["ES2022"],
|
|
15
|
+
"noEmit": true,
|
|
16
|
+
"types": ["node"],
|
|
4
17
|
"rootDir": "src"
|
|
5
18
|
},
|
|
6
19
|
"include": ["src"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.47",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/keystrokehq/keystroke.git",
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
15
15
|
"type": "module",
|
|
16
|
-
"exports": {
|
|
17
|
-
"./tsconfig.json": "./dist/configs/tsconfig.base.json"
|
|
18
|
-
},
|
|
19
16
|
"publishConfig": {
|
|
20
17
|
"access": "public",
|
|
21
18
|
"provenance": true,
|
|
@@ -44,9 +41,9 @@
|
|
|
44
41
|
"tsdown": "^0.22.0",
|
|
45
42
|
"tsx": "^4.22.3",
|
|
46
43
|
"@keystrokehq/oxlint-config": "0.0.4",
|
|
47
|
-
"@keystrokehq/tsconfig": "0.0.3",
|
|
48
44
|
"@keystrokehq/tsdown-config": "0.0.5",
|
|
49
|
-
"@keystrokehq/vitest-config": "0.0.7"
|
|
45
|
+
"@keystrokehq/vitest-config": "0.0.7",
|
|
46
|
+
"@keystrokehq/tsconfig": "0.0.3"
|
|
50
47
|
},
|
|
51
48
|
"scripts": {
|
|
52
49
|
"build": "tsdown && node scripts/copy-templates.mjs && node scripts/copy-skills-bundle.mjs && node scripts/copy-configs.mjs",
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"strict": true,
|
|
5
|
-
"esModuleInterop": true,
|
|
6
|
-
"skipLibCheck": true,
|
|
7
|
-
"isolatedModules": true,
|
|
8
|
-
"moduleDetection": "force",
|
|
9
|
-
"verbatimModuleSyntax": true,
|
|
10
|
-
"noUncheckedIndexedAccess": true,
|
|
11
|
-
"moduleResolution": "bundler",
|
|
12
|
-
"module": "ESNext",
|
|
13
|
-
"target": "ES2022",
|
|
14
|
-
"lib": ["ES2022"],
|
|
15
|
-
"noEmit": true,
|
|
16
|
-
"types": ["node"],
|
|
17
|
-
"typeRoots": ["../../node_modules/@types", "../../../../node_modules/@types"],
|
|
18
|
-
"paths": {
|
|
19
|
-
"vitest": ["../../node_modules/vitest", "../../../../node_modules/vitest"],
|
|
20
|
-
"vitest/*": ["../../node_modules/vitest/*", "../../../../node_modules/vitest/*"]
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|