com.kylin.di.messagepack 1.0.0 → 1.0.1

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.
@@ -8,6 +8,9 @@ on:
8
8
  jobs:
9
9
  publish:
10
10
  runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ id-token: write
11
14
  steps:
12
15
  - uses: actions/checkout@v4
13
16
 
@@ -16,7 +19,8 @@ jobs:
16
19
  node-version: '20'
17
20
  registry-url: 'https://registry.npmjs.org'
18
21
 
19
- - name: Publish package
20
- run: npm publish
21
- env:
22
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
22
+ - name: Upgrade npm for OIDC support
23
+ run: npm install -g npm@latest
24
+
25
+ - name: Publish with trusted publishing
26
+ run: npm publish --access public
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  KDI의 `SubscribableProperty`, `SubscribableCollection`, `SubscribableDictionary` 타입을 [MessagePack-CSharp](https://github.com/MessagePack-CSharp/MessagePack-CSharp)로 바이너리 직렬화할 수 있게 하는 어댑터 패키지.
4
4
 
5
5
  ```
6
- com.kylin.di.messagepack v1.0.0 | Unity 6000.0+ | MIT License
6
+ com.kylin.di.messagepack | Unity 6000.0+ | MIT License
7
7
  ```
8
8
 
9
9
  ---
@@ -2,7 +2,7 @@
2
2
  "name": "Kylin.DI.MessagePack",
3
3
  "rootNamespace": "Kylin.Serialization.MessagePack",
4
4
  "references": [
5
- "Kylin.DI"
5
+ "Kylin.Subscribable"
6
6
  ],
7
7
  "includePlatforms": [],
8
8
  "excludePlatforms": [],
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "com.kylin.di.messagepack",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "displayName": "KDI MessagePack Adapter",
5
- "description": "MessagePack-CSharp formatters for KDI SubscribableProperty types. Enables binary serialization of SubscribableProperty<T>, SubscribableCollection<T>, and SubscribableDictionary<TKey,TValue>.",
5
+ "description": "MessagePack-CSharp formatters for Kylin SubscribableProperty types. Enables binary serialization of SubscribableProperty<T>, SubscribableCollection<T>, and SubscribableDictionary<TKey,TValue>.",
6
6
  "unity": "6000.0",
7
7
  "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/ToolStorage/KDI-MessagePack"
11
+ },
8
12
  "keywords": [
9
13
  "messagepack",
10
14
  "serialization",
@@ -14,6 +18,6 @@
14
18
  "name": "Kylin"
15
19
  },
16
20
  "dependencies": {
17
- "com.kylin.di": "1.0.0"
21
+ "com.kylin.subscribable": "1.0.0"
18
22
  }
19
23
  }