kernel-script 1.0.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/LICENSE +21 -0
- package/README.md +396 -0
- package/bun.lock +385 -0
- package/dist/core/bootstrap.d.ts +2 -0
- package/dist/core/commands.d.ts +15 -0
- package/dist/core/engine-hub.d.ts +8 -0
- package/dist/core/helper.d.ts +1 -0
- package/dist/core/hooks/use-queue.d.ts +36 -0
- package/dist/core/persistence-manager.d.ts +10 -0
- package/dist/core/queue-manager.d.ts +66 -0
- package/dist/core/registry.d.ts +3 -0
- package/dist/core/store/base-task.store.d.ts +39 -0
- package/dist/core/task-context.d.ts +23 -0
- package/dist/index.cjs +4051 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +3575 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kernel-script",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Task queue manager for Chrome extensions with background processing, persistence, and React hooks",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/2noScript/kernel-script.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/2noScript/kernel-script#readme",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/2noScript/kernel-script/issues"
|
|
21
|
+
},
|
|
22
|
+
"author": "2noScript <thangmk7@gmail.com>",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"keywords": [
|
|
25
|
+
"chrome-extension",
|
|
26
|
+
"task-queue",
|
|
27
|
+
"queue-manager",
|
|
28
|
+
"automation",
|
|
29
|
+
"script-runner",
|
|
30
|
+
"background-tasks"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"dev": "bun --watch run src/index.ts",
|
|
34
|
+
"build": "tsc -p tsconfig.build.json && node esbuild.config.js && node scripts/fix-dts-paths.js",
|
|
35
|
+
"lint": "eslint .",
|
|
36
|
+
"format": "prettier --write .",
|
|
37
|
+
"release": "bun run build && bunx bumpp --push"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/bun": "latest",
|
|
41
|
+
"@types/chrome": "^0.1.40",
|
|
42
|
+
"@types/react": "^19.2.14",
|
|
43
|
+
"bumpp": "^10",
|
|
44
|
+
"esbuild": "^0.28.0",
|
|
45
|
+
"eslint": "^9",
|
|
46
|
+
"globals": "^15",
|
|
47
|
+
"prettier": "^3",
|
|
48
|
+
"typescript": "^6.0.2",
|
|
49
|
+
"typescript-eslint": "^8"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"react": "^19.2.5"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"p-queue": "^9.1.2",
|
|
56
|
+
"sonner": "^2.0.7",
|
|
57
|
+
"zustand": "^5.0.12"
|
|
58
|
+
}
|
|
59
|
+
}
|