@e245703/pkg-c 1.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.
@@ -0,0 +1 @@
1
+ export declare function aisatu(): string;
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ import { greet } from "@e245703/pkg-b";
2
+ // test
3
+ export function aisatu() {
4
+ return greet() + " and pkg-b";
5
+ }
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@e245703/pkg-c",
3
+ "version": "1.0.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/HokamaRyuta/changeset-test.git",
7
+ "directory": "packages/pkg-c"
8
+ },
9
+ "main": "dist/index.js",
10
+ "types": "dist/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "dependencies": {
15
+ "@e245703/pkg-b": "1.0.1"
16
+ },
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "scripts": {
21
+ "build": "tsc -p tsconfig.json"
22
+ }
23
+ }