-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.03 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
{
"name": "@chewhx/google-books",
"version": "4.0.0",
"description": "Search for books on Google Books",
"author": "Chew Han Xiang <hello@chewhx.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"google",
"books",
"search"
],
"engines": {
"node": ">=18"
},
"repository": {
"url": "https://github.com/chewhx/google-books",
"type": "git"
},
"scripts": {
"build": "tsc -p .",
"start": "npm run build:live",
"dev": "tsnd --respawn src",
"lint": "prettier src -w && jest --fix src",
"test": "jest",
"cz": "cz"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"commitizen": "^4.3.0",
"cz-emoji": "^1.3.2-canary.2",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}