-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 KB
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
{
"name": "typesense-utils",
"version": "0.0.0",
"license": "MIT",
"description": "A list of utilities for typesense search engine",
"keywords": [
"query",
"typesense"
],
"author": "Igor Korchagin (https://github.com/igrek8)",
"homepage": "https://github.com/igrek8/typesense-utils#readme",
"repository": {
"type": "git",
"url": "https://github.com/igrek8/typesense-utils"
},
"bugs": {
"url": "https://github.com/igrek8/typesense-utils/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"prettier": "@igrek8/prettier-config",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"compile": "tsc -p tsconfig.build.json",
"build": "npm run clean && npm run compile",
"lint": "eslint \"**/*\"",
"format": "prettier --check \"**/*\"",
"docs": "typedoc build -o docs && typedoc publish -o docs"
},
"dependencies": {
"tslib": "^2"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "29.5.14",
"eslint": "8.56.0",
"jest": "29.7.0",
"rimraf": "5.0.5",
"semantic-release": "20.1.3",
"ts-jest": "29.3.1",
"typescript": "4.9.5"
}
}