wxt-module-safari-xcode 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +14 -1
package/README.md CHANGED
@@ -21,7 +21,7 @@ export default defineConfig({
21
21
  projectName: 'Your Project Name',
22
22
  appCategory: 'public.app-category.productivity',
23
23
  bundleIdentifier: 'com.example.your-extension',
24
- developmentTeam: 'ABC1234567', // 可选,Apple Developer Team ID
24
+ developmentTeam: 'ABC1234567',
25
25
  },
26
26
  // ... other configurations
27
27
  })
@@ -85,4 +85,4 @@ export default defineConfig({
85
85
  })
86
86
  ```
87
87
 
88
- 生成的 Xcode 项目将位于:`.output/My Awesome Extension/My Awesome Extension.xcodeproj`
88
+ Generate the Xcode project will be located at: `.output/<projectName>/<projectName>.xcodeproj`
package/package.json CHANGED
@@ -1,6 +1,15 @@
1
1
  {
2
2
  "name": "wxt-module-safari-xcode",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
+ "description": "A WXT module that automatically converts Safari extensions to Xcode projects",
5
+ "keywords": [
6
+ "wxt",
7
+ "module",
8
+ "safari",
9
+ "xcode",
10
+ "browser-extension"
11
+ ],
12
+ "author": "rxliuli",
4
13
  "license": "MIT",
5
14
  "type": "module",
6
15
  "exports": {
@@ -12,6 +21,10 @@
12
21
  "files": [
13
22
  "dist"
14
23
  ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/rxliuli/wxt-module-safari-xcode.git"
27
+ },
15
28
  "sideEffects": false,
16
29
  "devDependencies": {
17
30
  "tsup": "^8.5.1",