@amaster.ai/pi-security 0.1.1-beta.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 ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@amaster.ai/pi-security",
3
+ "version": "0.1.1-beta.0",
4
+ "description": "Security policy engine and Pi extension for resource-aware tool authorization.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./extension": {
16
+ "types": "./dist/extension.d.ts",
17
+ "default": "./dist/extension.js"
18
+ },
19
+ "./package.json": {
20
+ "default": "./package.json"
21
+ }
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "README.md"
26
+ ],
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/TGYD-helige/pi.git",
33
+ "directory": "packages/pi-security"
34
+ },
35
+ "dependencies": {
36
+ "@amaster.ai/pi-types": "0.1.1-beta.0"
37
+ },
38
+ "peerDependencies": {
39
+ "@earendil-works/pi-coding-agent": ">=0.74.0"
40
+ },
41
+ "devDependencies": {
42
+ "@earendil-works/pi-coding-agent": "0.74.0",
43
+ "vitest": "^4.0.0"
44
+ },
45
+ "scripts": {
46
+ "build": "tsc -b",
47
+ "typecheck": "tsc -b --pretty false",
48
+ "test": "vitest run src"
49
+ }
50
+ }