-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "@hydrofoil/resource-store",
"version": "0.2.2",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"prepack": "tsc",
"prepare": "husky",
"release": "changeset publish"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/hypermedia-app/resource-store"
},
"dependencies": {
"@tpluscode/rdf-string": "^1.3.0",
"@tpluscode/sparql-builder": "^3",
"@types/clownface": "^2.0.7",
"@types/rdfjs__environment": "^1.0.0",
"rdf-dataset-ext": "^1.0.0",
"sparql-http-client": "^3.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.0.0",
"@tpluscode/eslint-config": "^0.4.5",
"@types/rdf-dataset-ext": "^1.0.0",
"@types/sparql-http-client": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint-import-resolver-typescript": "^3.6.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.4.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}