com.kylin.di 1.1.0 → 1.1.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
  Unity 6 전용 Scope 기반 경량 DI 프레임워크. 필드 주입 전용, 계층적 Scope, 반응형 프로퍼티 내장.
4
4
 
5
5
  ```
6
- com.kylin.di v1.0.0 | Unity 6000.0+ | MIT License
6
+ com.kylin.di | Unity 6000.0+ | MIT License
7
7
  ```
8
8
 
9
9
  ---
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "com.kylin.di",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "displayName": "KDI (Kylin Dependency Injection)",
5
5
  "description": "Scope-based dependency injection framework for Unity 6. Field injection only, hierarchical scopes.",
6
6
  "unity": "6000.0",
7
7
  "documentationUrl": "",
8
8
  "license": "MIT",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/ToolStorage/KDI"
12
+ },
9
13
  "keywords": [
10
14
  "dependency-injection",
11
15
  "di",