-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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": "@rezasoltani/solid-typeindex-support",
"version": "0.0.7",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w",
"clean": "rimraf dist/",
"build": "npm run clean && tsc",
"api-report": "api-extractor run --local",
"api-docs": "api-documenter markdown -i temp -o docs",
"build-with-docs": "npm run build && npm run api-report && npm run api-docs",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pondersource/solid-typeindex-support.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/solid-typeindex-support/issues"
},
"homepage": "https://github.com/pondersource/solid-typeindex-support#readme",
"devDependencies": {
"@microsoft/api-documenter": "^7.23.14",
"@microsoft/api-extractor": "^7.38.5",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.3",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@inrupt/solid-client": "^1.30.2",
"@inrupt/vocab-common-rdf": "^1.0.5",
"@rdfjs/data-model": "^1.3.4"
}
}