attent 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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # attent
2
+
3
+ Authorization infrastructure for autonomous software.
4
+
5
+ Early stage — package name reserved, implementation in progress.
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export default {};
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "attent",
3
+ "version": "0.0.1",
4
+ "description": "Authorization infrastructure for autonomous software",
5
+ "keywords": [
6
+ "ai",
7
+ "agents",
8
+ "agentic-ai",
9
+ "authorization",
10
+ "authentication",
11
+ "identity",
12
+ "permissions",
13
+ "access-control",
14
+ "capabilities",
15
+ "delegation",
16
+ "security",
17
+ "mcp",
18
+ "non-human-identity"
19
+ ],
20
+ "homepage": "https://github.com/AttentJS/attent#readme",
21
+ "bugs": {
22
+ "url": "https://github.com/AttentJS/attent/issues"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/AttentJS/attent.git"
27
+ },
28
+ "license": "MIT",
29
+ "author": "AttentJS",
30
+ "type": "module",
31
+ "main": "dist/index.js",
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "scripts": {
36
+ "test": "echo \"Error: no test specified\" && exit 1"
37
+ }
38
+ }