-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "dolphindb",
"description": "DolphinDB JavaScript API",
"version": "3.0.217",
"type": "module",
"main": "./index.js",
"browser": "./browser.js",
"scripts": {
"build": "tsc",
"test": "node --experimental-transform-types ./test.ts",
"lint": "eslint \"**/*.{ts,tsx}\"",
"fix": "eslint --fix \"**/*.{ts,tsx}\"",
"scan": "i18n-scan --input \"**/*.{ts,tsx}\""
},
"author": "Hongfei Shen <hongfei.shen@dolphindb.com> (https://dolphindb.net/hongfeishen)",
"publisher": "Hongfei Shen",
"license": "MIT",
"homepage": "https://github.com/dolphindb/api-javascript",
"repository": {
"type": "git",
"url": "git+https://github.com/dolphindb/api-javascript.git"
},
"bugs": {
"url": "https://github.com/dolphindb/api-javascript/issues"
},
"keywords": [
"DolphinDB",
"API",
"JavaScript"
],
"devDependencies": {
"@types/node": "^22.13.1",
"eslint": "^9.20.1",
"typescript": "^5.7.3"
},
"dependencies": {
"dayjs": "^1.11.13",
"ipaddr.js": "^2.2.0",
"tslib": "^2.8.1",
"xshell": "^1.2.14"
}
}