-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"author": "Triply <[email protected]>",
"type": "module",
"dependencies": {
"@triplyetl/etl": "^4.8.8",
"axios": "^1.7.5",
"date-fns": "^3.6.0",
"isodate": "^0.1.4",
"n3": "^1.21.0",
"rdf-ext": "^2.5.2",
"rdf-fetch": "^1.0.0",
"rdf-parser-rdfxml": "^0.3.1",
"rdflib": "^2.2.35",
"rdfxml-streaming-parser": "^2.4.0"
},
"description": "Triply ETL for personenthesaurus",
"lint-staged": {
"*.ts?(x)": [
"npm run util:lint:fix",
"prettier --write --ignore-unknown"
]
},
"main": "lib/main.js",
"private": true,
"license": "UNLICENSED",
"contributors": [
{
"name": "Elena",
"email": "[email protected]"
}
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch --preserveWatchOutput",
"util:lint": "cross-env ESLINT_STRICT=true eslint --ext .tsx --ext .ts ./src",
"util:lint:fix": "cross-env ESLINT_STRICT=true eslint --fix --ext .tsx --ext .ts ./src",
"util:validateTs": "tsc --noEmit",
"util:validateTs:watch": "tsc --noEmit --watch --preserveWatchOutput",
"prepare": "husky install"
},
"version": "1.0.0",
"name": "personenthesaurus",
"devDependencies": {
"@types/n3": "^1.16.5",
"@types/node": "^22.5.0",
"@types/rdf-ext": "^2.5.0",
"typescript": "^5.5.4"
}
}