@flowscripter/example-plugin 1.0.13 → 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.
Files changed (2) hide show
  1. package/README.md +3 -6
  2. package/package.json +19 -19
package/README.md CHANGED
@@ -37,20 +37,17 @@ plugin:
37
37
 
38
38
  `bun build index.ts --outdir ./dist --entry-naming bundle.js --minify`
39
39
 
40
- **NOTE**: The following tasks use Deno as it excels at these and Bun does not
41
- currently provide such functionality:
42
-
43
40
  Format:
44
41
 
45
- `deno fmt`
42
+ `bunx oxfmt`
46
43
 
47
44
  Lint:
48
45
 
49
- `deno lint index.ts src/ tests/`
46
+ `bunx oxlint index.ts src/ tests/`
50
47
 
51
48
  Generate HTML API Documentation:
52
49
 
53
- `deno doc --html --name=example-plugin index.ts`
50
+ `bunx typedoc --readme none index.ts`
54
51
 
55
52
  ## Documentation
56
53
 
package/package.json CHANGED
@@ -1,40 +1,40 @@
1
1
  {
2
2
  "name": "@flowscripter/example-plugin",
3
+ "version": "1.1.1",
3
4
  "description": "Example plugin for the https://github.com/flowscripter/dynamic-plugin-framework",
4
- "homepage": "https://github.com/flowscripter/example-plugin#readme",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://github.com/flowscripter/example-plugin.git"
8
- },
9
- "license": "MIT",
10
5
  "keywords": [
11
6
  "bun",
7
+ "dynamic",
12
8
  "example",
13
- "plugin",
14
9
  "framework",
15
- "dynamic",
16
- "import"
10
+ "import",
11
+ "plugin"
17
12
  ],
18
- "module": "dist/bundle.js",
19
- "type": "module",
20
- "version": "1.0.13",
21
- "exports": "./dist/bundle.js",
13
+ "homepage": "https://github.com/flowscripter/example-plugin#readme",
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/flowscripter/example-plugin.git"
18
+ },
22
19
  "files": [
23
20
  "dist/",
24
21
  "README.md",
25
22
  "LICENSE"
26
23
  ],
24
+ "type": "module",
25
+ "module": "dist/bundle.js",
26
+ "exports": "./dist/bundle.js",
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
+ "dependencies": {
31
+ "@flowscripter/dynamic-plugin-framework": "^1.4.0",
32
+ "@flowscripter/example-plugin-api": "^1.1.1"
33
+ },
30
34
  "devDependencies": {
31
- "@types/bun": "^1.2.19"
35
+ "@types/bun": "^1.3.14"
32
36
  },
33
37
  "peerDependencies": {
34
- "typescript": "^5.8.3"
35
- },
36
- "dependencies": {
37
- "@flowscripter/dynamic-plugin-framework": "^1.3.18",
38
- "@flowscripter/example-plugin-api": "^1.0.8"
38
+ "typescript": "^6.0.3"
39
39
  }
40
40
  }