46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@polymech/acl",
|
|
"version": "0.2.0",
|
|
"type": "module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"author": "Polymech",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://git.polymech.io/polymech/mono.git",
|
|
"directory": "packages/acl"
|
|
},
|
|
"bin": {
|
|
"pm-acl": "./dist-in/main.js"
|
|
},
|
|
"exports": {
|
|
".": "./dist-in/index.js",
|
|
"./vfs": "./dist-in/vfs/AclVfsClient.js",
|
|
"./vfs/decorated": "./dist-in/vfs/DecoratedVfsClient.js",
|
|
"./vfs/acl": "./dist-in/vfs/vfs-acl.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc -p . --watch",
|
|
"test:core": "vitest run src/acl.test.ts",
|
|
"test:all": "vitest run tests/ src/acl.test.ts",
|
|
"lint": "eslint src"
|
|
},
|
|
"dependencies": {
|
|
"ignore": "^7.0.5",
|
|
"mime": "^4.1.0",
|
|
"pino": "^9.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/typescript-config": "file:../typescript-config",
|
|
"@types/node": "22.10.2",
|
|
"@vitest/coverage-v8": "^2.1.8",
|
|
"@vitest/ui": "2.1.9",
|
|
"eslint": "^9.39.2",
|
|
"typescript": "^5.7.2",
|
|
"typescript-eslint": "^8.56.0",
|
|
"vitest": "^2.1.8"
|
|
}
|
|
} |