-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "skeleton-crew",
"version": "0.7.0",
"description": "A plugin runtime for running and evolving live applications safely — atomic hot-swap and enforced fault containment.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.browser.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./test-utils": {
"types": "./dist/test-utils.d.ts",
"import": "./dist/test-utils.js",
"default": "./dist/test-utils.js"
}
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rimraf dist node_modules/.cache/skeleton-crew.tsbuildinfo && tsc",
"build:examples": "rimraf dist-examples && tsc -p tsconfig.examples.json",
"test": "vitest run --reporter=json --outputFile=./test-output.json",
"test:verbose": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"release": "node scripts/release.js",
"release:dry": "node scripts/release.js --dry-run",
"examples": "npm run build:examples && node dist-example/examples/playground/index.js",
"example:01": "npm run build:examples && node dist-example/examples/basics/01-plugin-system/index.js",
"example:02": "npm run build:examples && node dist-example/examples/basics/02-screen-registry/index.js",
"example:03": "npm run build:examples && node dist-example/examples/basics/03-action-engine/index.js",
"example:04": "npm run build:examples && node dist-example/examples/basics/04-event-bus/index.js",
"example:05": "npm run build:examples && node dist-example/examples/basics/05-runtime-context/index.js",
"tutorial:01": "npm run build:examples && node dist-example/examples/tutorial/01-basic-task-plugin/index.js",
"tutorial:02": "npm run build:examples && node dist-example/examples/tutorial/02-multiple-plugins/index.js",
"tutorial:03": "npm run build:examples && node dist-example/examples/tutorial/03-event-communication/index.js",
"tutorial:04": "npm run build:examples && vite dist-example/examples/tutorial/04-ui-provider-swap",
"tutorial:05": "npm run build:examples && node dist-example/examples/tutorial/05-custom-plugin/index.js"
},
"keywords": [
"runtime",
"plugin",
"plugin-system",
"hot-swap",
"hot-reload",
"live-update",
"fault-isolation",
"fault-containment",
"multi-tenant",
"sandbox",
"modular",
"ui-agnostic",
"event-driven",
"typescript"
],
"author": {
"name": "skcrew",
"email": "skeletoncrewruntime@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/razukc/skeleton-crew.git"
},
"homepage": "https://github.com/razukc/skeleton-crew#readme",
"bugs": {
"url": "https://github.com/razukc/skeleton-crew/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.0.15",
"fast-check": "^3.15.0",
"rimraf": "^6.1.2",
"typescript": "^5.3.3",
"vitest": "^4.0.15"
},
"optionalDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^7.2.6"
},
"dependencies": {
"fast-glob": "^3.3.3",
"semver": "^7.8.2"
}
}