-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "@litert/http-client",
"version": "1.1.2",
"description": "A simple HTTP client based on LiteRT.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@litert/eslint-plugin-rules": "^0.1.6",
"@types/node": "^20.11.7",
"husky": "^9.0.6",
"typescript": "^5.3.3"
},
"scripts": {
"prepublishOnly": "npm run rebuild",
"build": "echo Using TypeScript && tsc -v && tsc -p .",
"typecheck": "echo Using TypeScript && tsc -v && tsc -p . --noEmit",
"build-watch": "echo Using TypeScript && tsc -v && tsc -w -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"test": "echo See directory sources/samples",
"clean": "rm -rf lib examples",
"lint": "eslint --ext ts src",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litert/http-client.js.git"
},
"bugs": {
"url": "https://github.com/litert/http-client.js/issues"
},
"homepage": "https://github.com/litert/http-client.js#readme",
"keywords": [
"http",
"client"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
}
}