skeleton-crew-runtime 0.1.5 → 0.2.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.
package/package.json CHANGED
@@ -1,84 +1,89 @@
1
- {
2
- "name": "skeleton-crew-runtime",
3
- "version": "0.1.5",
4
- "description": "A minimal plugin runtime for building modular JavaScript applications.",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js",
12
- "default": "./dist/index.js"
13
- }
14
- },
15
- "files": [
16
- "dist/",
17
- "LICENSE",
18
- "README.md"
19
- ],
20
- "scripts": {
21
- "build": "rimraf dist && tsc",
22
- "build:examples": "rimraf dist-examples && tsc -p tsconfig.examples.json",
23
- "test": "vitest run",
24
- "test:watch": "vitest",
25
- "prepublishOnly": "npm run build && npm test",
26
- "examples": "npm run build:examples && node dist-example/examples/playground/index.js",
27
- "example:01": "npm run build:examples && node dist-example/examples/basics/01-plugin-system/index.js",
28
- "example:02": "npm run build:examples && node dist-example/examples/basics/02-screen-registry/index.js",
29
- "example:03": "npm run build:examples && node dist-example/examples/basics/03-action-engine/index.js",
30
- "example:04": "npm run build:examples && node dist-example/examples/basics/04-event-bus/index.js",
31
- "example:05": "npm run build:examples && node dist-example/examples/basics/05-runtime-context/index.js",
32
- "tutorial:01": "npm run build:examples && node dist-example/examples/tutorial/01-basic-task-plugin/index.js",
33
- "tutorial:02": "npm run build:examples && node dist-example/examples/tutorial/02-multiple-plugins/index.js",
34
- "tutorial:03": "npm run build:examples && node dist-example/examples/tutorial/03-event-communication/index.js",
35
- "tutorial:04": "npm run build:examples && vite dist-example/examples/tutorial/04-ui-provider-swap",
36
- "tutorial:05": "npm run build:examples && node dist-example/examples/tutorial/05-custom-plugin/index.js"
37
- },
38
- "keywords": [
39
- "runtime",
40
- "plugin",
41
- "plugin-system",
42
- "framework",
43
- "internal-tools",
44
- "modular",
45
- "ui-agnostic",
46
- "event-driven",
47
- "browser-extension",
48
- "cli-tools",
49
- "typescript"
50
- ],
51
- "author": {
52
- "name": "skcrew",
53
- "email": "skeletoncrewruntime@gmail.com"
54
- },
55
- "license": "MIT",
56
- "repository": {
57
- "type": "git",
58
- "url": "git+https://github.com/skcrew/runtime.git"
59
- },
60
- "homepage": "https://github.com/skcrew/runtime#readme",
61
- "bugs": {
62
- "url": "https://github.com/skcrew/runtime/issues"
63
- },
64
- "engines": {
65
- "node": ">=18.0.0",
66
- "npm": ">=8.0.0"
67
- },
68
- "devDependencies": {
69
- "@types/node": "^20.10.0",
70
- "@vitest/coverage-v8": "^4.0.15",
71
- "fast-check": "^3.15.0",
72
- "rimraf": "^6.1.2",
73
- "typescript": "^5.3.3",
74
- "vitest": "^4.0.15"
75
- },
76
- "optionalDependencies": {
77
- "@types/react": "^18.2.0",
78
- "@types/react-dom": "^18.2.0",
79
- "@vitejs/plugin-react": "^4.2.0",
80
- "react": "^18.2.0",
81
- "react-dom": "^18.2.0",
82
- "vite": "^7.2.6"
83
- }
84
- }
1
+ {
2
+ "name": "skeleton-crew-runtime",
3
+ "version": "0.2.0",
4
+ "description": "A minimal plugin runtime for building modular JavaScript applications.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist/",
17
+ "LICENSE",
18
+ "README.md"
19
+ ],
20
+ "scripts": {
21
+ "build": "rimraf dist && tsc",
22
+ "build:examples": "rimraf dist-examples && tsc -p tsconfig.examples.json",
23
+ "test": "vitest run --reporter=json --outputFile=./test-output.json",
24
+ "test:verbose": "vitest run",
25
+ "test:watch": "vitest",
26
+ "prepublishOnly": "npm run build && npm test",
27
+ "release": "node scripts/release.js",
28
+ "examples": "npm run build:examples && node dist-example/examples/playground/index.js",
29
+ "example:01": "npm run build:examples && node dist-example/examples/basics/01-plugin-system/index.js",
30
+ "example:02": "npm run build:examples && node dist-example/examples/basics/02-screen-registry/index.js",
31
+ "example:03": "npm run build:examples && node dist-example/examples/basics/03-action-engine/index.js",
32
+ "example:04": "npm run build:examples && node dist-example/examples/basics/04-event-bus/index.js",
33
+ "example:05": "npm run build:examples && node dist-example/examples/basics/05-runtime-context/index.js",
34
+ "tutorial:01": "npm run build:examples && node dist-example/examples/tutorial/01-basic-task-plugin/index.js",
35
+ "tutorial:02": "npm run build:examples && node dist-example/examples/tutorial/02-multiple-plugins/index.js",
36
+ "tutorial:03": "npm run build:examples && node dist-example/examples/tutorial/03-event-communication/index.js",
37
+ "tutorial:04": "npm run build:examples && vite dist-example/examples/tutorial/04-ui-provider-swap",
38
+ "tutorial:05": "npm run build:examples && node dist-example/examples/tutorial/05-custom-plugin/index.js"
39
+ },
40
+ "keywords": [
41
+ "runtime",
42
+ "plugin",
43
+ "plugin-system",
44
+ "framework",
45
+ "internal-tools",
46
+ "modular",
47
+ "ui-agnostic",
48
+ "event-driven",
49
+ "browser-extension",
50
+ "cli-tools",
51
+ "typescript"
52
+ ],
53
+ "author": {
54
+ "name": "skcrew",
55
+ "email": "skeletoncrewruntime@gmail.com"
56
+ },
57
+ "license": "MIT",
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "git+https://github.com/skcrew/runtime.git"
61
+ },
62
+ "homepage": "https://github.com/skcrew/runtime#readme",
63
+ "bugs": {
64
+ "url": "https://github.com/skcrew/runtime/issues"
65
+ },
66
+ "engines": {
67
+ "node": ">=18.0.0",
68
+ "npm": ">=8.0.0"
69
+ },
70
+ "devDependencies": {
71
+ "@types/node": "^20.10.0",
72
+ "@vitest/coverage-v8": "^4.0.15",
73
+ "fast-check": "^3.15.0",
74
+ "rimraf": "^6.1.2",
75
+ "typescript": "^5.3.3",
76
+ "vitest": "^4.0.15"
77
+ },
78
+ "optionalDependencies": {
79
+ "@types/react": "^18.2.0",
80
+ "@types/react-dom": "^18.2.0",
81
+ "@vitejs/plugin-react": "^4.2.0",
82
+ "react": "^18.2.0",
83
+ "react-dom": "^18.2.0",
84
+ "vite": "^7.2.6"
85
+ },
86
+ "dependencies": {
87
+ "fast-glob": "^3.3.3"
88
+ }
89
+ }