-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
85 lines (85 loc) · 2.3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "wikibase-sdk",
"version": "10.2.1",
"type": "module",
"description": "utils functions to query a Wikibase instance and simplify its results",
"main": "./dist/src/index.js",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./wikidata.org": {
"types": "./dist/src/wellknown/wikidata.org.d.ts",
"import": "./dist/src/wellknown/wikidata.org.js"
}
},
"types": "./dist/src/index.d.ts",
"files": [
"dist/src",
"CHANGELOG.md"
],
"directories": {
"lib": "dist",
"doc": "docs",
"test": "test"
},
"scripts": {
"add-fixture-entity": "./scripts/add_fixture_entity",
"build": "tsc",
"check-supported-datatypes": "./scripts/check_supported_datatypes",
"git-pre-commit": "./scripts/githooks/pre-commit",
"lint": "eslint -c .eslintrc.cjs src scripts tests",
"lint-fix": "npm run lint -- --fix",
"test": "./scripts/run_tests",
"prepublishOnly": "git checkout main",
"prepack": "npm run build && npm run lint && npm test",
"postpublish": "./scripts/postpublish",
"update-wikimedia-constants": "./scripts/update_wikimedia_constants.ts",
"update-toc": "./scripts/update_toc",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/maxlath/wikibase-sdk"
},
"keywords": [
"wikidata",
"wikibase",
"sdk",
"api",
"wdq",
"sparql",
"wbk"
],
"author": "maxlath",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxlath/wikibase-sdk/issues"
},
"homepage": "https://github.com/maxlath/wikibase-sdk",
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.6.0",
"@swc/core": "^1.7.4",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/git-hooks": "^1.0.0",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"lodash-es": "^4.17.21",
"mocha": "^10.7.0",
"should": "^13.2.3",
"tiny-chalk": "^3.0.1",
"tsx": "^4.19.1",
"typescript": "^5.5.4"
},
"engines": {
"node": ">= 12.0.0"
}
}