@siftline/actions 0.0.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.
- package/LICENSE +21 -0
- package/README.md +17 -0
- package/dist/index.d.mts +9 -0
- package/dist/index.mjs +11 -0
- package/package.json +58 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Todayweb
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @siftline/actions
|
|
2
|
+
|
|
3
|
+
Siftline adapters for the places labels land: issue trackers, inboxes and queues.
|
|
4
|
+
|
|
5
|
+
This package is a walking skeleton. It exports a placeholder constant built from
|
|
6
|
+
`@siftline/core`'s own placeholder, which is enough to prove the build, type, test, pack
|
|
7
|
+
and publish path and that the dependency on the engine resolves. The adapters land next.
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { PLACEHOLDER } from "@siftline/actions";
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
ESM only. Node 22.14 or newer.
|
|
14
|
+
|
|
15
|
+
## Licence
|
|
16
|
+
|
|
17
|
+
MIT — see [LICENSE](./LICENSE).
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
//#region src/index.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Walking-skeleton export. It exists so the build, type, test, pack and publish path
|
|
4
|
+
* can be proven before any adapter is written, and it will be deleted when the first
|
|
5
|
+
* adapter lands. The engine's own placeholder is folded in so the caret dependency on
|
|
6
|
+
* `@siftline/core` is exercised at runtime, not merely declared.
|
|
7
|
+
*/
|
|
8
|
+
export declare const PLACEHOLDER = "siftline-actions-walking-skeleton(siftline-core-walking-skeleton)";
|
|
9
|
+
//#endregion
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PLACEHOLDER as PLACEHOLDER$1 } from "@siftline/core";
|
|
2
|
+
//#region src/index.ts
|
|
3
|
+
/**
|
|
4
|
+
* Walking-skeleton export. It exists so the build, type, test, pack and publish path
|
|
5
|
+
* can be proven before any adapter is written, and it will be deleted when the first
|
|
6
|
+
* adapter lands. The engine's own placeholder is folded in so the caret dependency on
|
|
7
|
+
* `@siftline/core` is exercised at runtime, not merely declared.
|
|
8
|
+
*/
|
|
9
|
+
const PLACEHOLDER = `siftline-actions-walking-skeleton(${PLACEHOLDER$1})`;
|
|
10
|
+
//#endregion
|
|
11
|
+
export { PLACEHOLDER };
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@siftline/actions",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Siftline adapters for the places labels land: issue trackers, inboxes and queues.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"actions",
|
|
7
|
+
"classification",
|
|
8
|
+
"siftline",
|
|
9
|
+
"triage"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://docs.siftline.dev",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Siftline/toolkit/issues"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Todayweb",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/Siftline/toolkit.git",
|
|
20
|
+
"directory": "packages/actions"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.mts",
|
|
30
|
+
"default": "./dist/index.mjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsdown",
|
|
38
|
+
"dev": "tsdown --watch",
|
|
39
|
+
"lint": "oxlint --type-aware --deny-warnings",
|
|
40
|
+
"lint:fix": "oxlint --type-aware --deny-warnings --fix",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"typecheck": "tsc --noEmit"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@siftline/core": "^0.0.2"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@arethetypeswrong/core": "0.18.5",
|
|
49
|
+
"@siftline/config": "workspace:*",
|
|
50
|
+
"publint": "0.3.24",
|
|
51
|
+
"tsdown": "0.23.0",
|
|
52
|
+
"typescript": "7.0.2",
|
|
53
|
+
"vitest": "4.1.11"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=22.14"
|
|
57
|
+
}
|
|
58
|
+
}
|