-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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
52
53
54
55
56
{
"name": "oceanid",
"version": "0.0.1-alpha.1",
"description": "A full text search engine that isn't also a database.",
"type": "module",
"bin": {
"oceanid": "oceanid.cjs"
},
"scripts": {
"format": "npx prettier --write .",
"lint": "npx prettier --check .",
"clean": "test -d bin && rm -r bin || true",
"build": "tsc",
"watch": "tsc --watch",
"prepare": "husky install && npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/oceanid.git"
},
"author": "Hunter Perrin <hperrin@gmail.com>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/sciactive/oceanid/issues"
},
"homepage": "https://github.com/sciactive/oceanid#readme",
"dependencies": {
"@sciactive/tokenizer": "^3.4.0",
"body-parser": "^2.2.2",
"commander": "^14.0.3",
"express": "^5.2.1",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@tsconfig/recommended": "^1.0.13",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/update-notifier": "^6.0.8",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}