-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "@litert/websocket",
"version": "0.2.8",
"description": "The websocket protocol library for LiteRT.",
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "npm run rebuild",
"build": "echo Using TypeScript && tsc -v && tsc -p .",
"build-watch": "echo Using TypeScript && tsc -v && tsc -w -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"clean": "rm -rf lib examples test",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "./utils/lint.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litert/websocket.js.git"
},
"bugs": {
"url": "https://github.com/litert/websocket.js/issues"
},
"homepage": "https://github.com/litert/websocket.js#readme",
"keywords": [
"litert",
"websocket"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@litert/eslint-plugin-rules": "^0.3.1",
"@types/node": "^24.7.0",
"husky": "^9.1.7",
"serve": "^14.2.5",
"typedoc-plugin-markdown": "^4.6.4",
"typedoc-plugin-no-inherit": "^1.6.1",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.14.1"
}
}