-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@dokieli/web-access-control",
"version": "1.0.0",
"description": "Web Access Control (WAC) client library: WAC-Allow header interpretation, effective ACL resource discovery, authorization queries, and pure ACL patch planning. The library allows clients to use their own RDF parsers and HTTP stacks.",
"type": "module",
"packageManager": "yarn@4.17.0",
"author": "dokieli",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dokieli/web-access-control.git"
},
"bugs": "https://github.com/dokieli/web-access-control/issues",
"homepage": "https://dokieli.github.io/web-access-control/",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"docs": "typedoc",
"prepare": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:all": "vitest run && tsc --noEmit"
},
"keywords": [
"access control",
"acl",
"authorization",
"n3-patch",
"sparql-update",
"turtle",
"typescript",
"w3c",
"wac",
"web access control",
"web standards"
],
"devDependencies": {
"@types/n3": "^1.26.1",
"@types/node": "^25.5.2",
"@types/rdfjs__data-model": "^2",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^10.6.0",
"eslint-plugin-license-header": "^0.9.0",
"typedoc": "^0.28.20",
"typescript": "^6.0.2",
"vitest": "^3.0.0"
},
"dependencies": {
"@rdfjs/data-model": "^2.1.1",
"@rdfjs/types": "^2.0.1",
"n3": "^2.2.0"
}
}