-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 KB
/
package.json
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
{
"name": "soukai-solid-utils",
"version": "0.0.3",
"description": "Some utils for use in combination with Soukai Solid",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w",
"clean": "rm -rf dist/",
"build": "npm run clean && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pondersource/soukai-solid-utils.git"
},
"files": [
"dist/**/*"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"keywords": [
"typescript",
"npm",
"template",
"ts"
],
"author": "Reza Soltani",
"license": "MIT",
"bugs": {
"url": "https://github.com/pondersource/soukai-solid-utils/issues"
},
"homepage": "https://github.com/pondersource/soukai-solid-utils#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@noeldemartin/solid-utils": "^0.3.0",
"@noeldemartin/utils": "^0.4.0",
"rdf-js": "^4.0.2",
"soukai": "~0.5.1",
"soukai-solid": "^0.5.2",
"uuid": "^9.0.1"
}
}