-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.07 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.07 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
{
"name": "@solid/object",
"version": "0.4.0",
"description": "RDF mapping classes for Solid",
"main": "dist/mod.js",
"type": "module",
"types": "./dist/mod.d.ts",
"exports": {
".": "./dist/mod.js",
"./acp": "./dist/acp/mod.js",
"./solid": "./dist/solid/mod.js",
"./webid": "./dist/webid/mod.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/solid/object.git"
},
"scripts": {
"start": "npm test",
"test": "tsc && tsc -p test && node --test \"**/*.test.js\""
},
"keywords": [
"solid",
"wrapping-classes",
"rdf",
"object-oriented",
"rdfjs",
"mapping",
"wrapper"
],
"contributors": [
"Matthieu Bosquet (https://github.com/matthieubosquet)",
"Samu Lang (https://github.com/langsamu)"
],
"license": "MIT",
"dependencies": {
"rdfjs-wrapper": "^0.15.0"
},
"devDependencies": {
"@rdfjs/types": "^2",
"@types/n3": "^1",
"@types/node": "^24",
"n3": "^1",
"typescript": "^5"
},
"engines": {
"node": ">=24.0.0"
}
}