@peachy/core 0.0.12 → 0.0.13

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/dist/env.d.mts ADDED
@@ -0,0 +1 @@
1
+ export { };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peachy/core",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "Base peachy CLI",
5
5
  "license": "MIT",
6
6
  "author": "Angelo Verlain <hey@vixalien.com>",
@@ -9,33 +9,41 @@
9
9
  },
10
10
  "files": [
11
11
  "dist",
12
- "tsconfig.json"
12
+ "tsconfig.json",
13
+ "tsconfig.app.json"
13
14
  ],
14
15
  "type": "module",
15
16
  "exports": {
16
17
  ".": {
17
18
  "import": "./dist/index.mjs",
18
- "types": "./dist/index.d.ts"
19
+ "types": "./dist/index.d.mts"
19
20
  },
20
- "./tsconfig": "./tsconfig.json"
21
+ "./tsconfig.lib": "./tsconfig.json",
22
+ "./tsconfig.app": "./tsconfig.app.json",
23
+ "./types": {
24
+ "types": "./dist/env.d.mts"
25
+ }
21
26
  },
22
27
  "dependencies": {
23
- "@peachy/types": "^2026.3.10",
24
28
  "minargs": "^2.1.0",
25
- "rolldown": "1.0.0-rc.7",
29
+ "rolldown": "1.0.0-rc.14",
26
30
  "rollup-plugin-cleandir": "^3.0.0",
27
- "ws": "^8.19.0",
28
- "@peachy/plugin-css": "0.0.12",
29
- "@peachy/plugin-react": "0.0.12",
30
- "@peachy/plugin-resources": "0.0.12",
31
- "@peachy/plugin-runner": "0.0.12"
31
+ "ws": "^8.20.0",
32
+ "@peachy/plugin-css": "0.0.13",
33
+ "@peachy/plugin-react": "0.0.13",
34
+ "@peachy/plugin-resources": "0.0.13",
35
+ "@peachy/plugin-runner": "0.0.13"
32
36
  },
33
37
  "devDependencies": {
34
- "@types/node": "^25.3.5",
38
+ "@peachy/types": "^2026.4.9",
39
+ "@types/node": "^25.5.2",
35
40
  "@types/ws": "^8.18.1",
36
- "tsdown": "0.21.0",
41
+ "tsdown": "0.21.7",
37
42
  "tsx": "^4.21.0"
38
43
  },
44
+ "peerDependencies": {
45
+ "@peachy/types": "^2026.3.10"
46
+ },
39
47
  "scripts": {
40
48
  "build": "tsdown"
41
49
  }
@@ -0,0 +1,17 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "strict": true,
5
+ "esModuleInterop": true,
6
+ "lib": ["es2024"],
7
+ "allowSyntheticDefaultImports": true,
8
+ "target": "ES2020",
9
+ "module": "Preserve",
10
+ "moduleResolution": "bundler",
11
+ "noEmit": true,
12
+ "skipLibCheck": true,
13
+ "types": ["@peachy/core/types"]
14
+ },
15
+ "include": ["@peachy/core/types", "${configDir}/src"],
16
+ "exclude": ["dist", "${configDir}/dist"]
17
+ }
package/tsconfig.json CHANGED
@@ -1,27 +1,8 @@
1
1
  {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./tsconfig.app.json",
2
4
  "compilerOptions": {
3
- "strict": true,
4
- "esModuleInterop": true,
5
- "lib": ["es2024"],
6
- "allowSyntheticDefaultImports": true,
7
- "target": "ES2020",
8
- "module": "Preserve",
9
- "moduleResolution": "bundler",
10
- "noEmit": true,
11
- "skipLibCheck": true,
12
5
  "isolatedDeclarations": true,
13
6
  "composite": true
14
- },
15
- "include": [
16
- // when installed locally
17
- "./node_modules/@peachy/types/types/index.d.ts",
18
- "./node_modules/@peachy/plugin-resources/src/modules.d.ts",
19
- "./node_modules/@peachy/plugin-css/src/modules.d.ts",
20
- // when installed via npm/pnpm
21
- "../types/types/index.d.ts",
22
- "../plugin-resources/src/modules.d.ts",
23
- "../plugin-css/src/modules.d.ts",
24
- "${configDir}/src/**/*"
25
- ],
26
- "exclude": ["dist", "${configDir}/dist"]
7
+ }
27
8
  }