forked from klinecharts/KLineChart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "klinecharts",
"version": "9.1.1",
"description": "Lightweight k-line chart built with html5 canvas",
"main": "./dist/klinecharts.min.js",
"module": "index.js",
"types": "./types/index.d.ts",
"files": [
"LICENSE",
"README.md",
"index.js",
"types/",
"dist/",
"licenses/",
"NOTICE"
],
"repository": {
"type": "git",
"url": "https://github.com/liihuu/KLineChart"
},
"keywords": [
"k-line",
"time-line",
"candlestick",
"technical-indicators",
"finance",
"klinechart",
"stockchart",
"stock",
"chart",
"canvas"
],
"author": "liihuu",
"license": "Apache-2.0",
"private": false,
"scripts": {
"lint": "eslint src",
"clean": "node scripts/clean.js",
"build-core:dev": "cross-env NODE_ENV=development node scripts/build.js",
"build-core:prod": "cross-env NODE_ENV=production node scripts/build.js",
"build-core": "npm run build-core:dev && npm run build-core:prod",
"build-dts": "dts-bundle-generator --no-banner true --umd-module-name klinecharts -o types/index.d.ts src/index.ts",
"build": "npm run clean && npm run build-core && npm run build-dts",
"prepare": "husky install",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:gen-search": "npm run docs:build && node ./docs/.vitepress/lunrBuild.js",
"docs:deploy": "npm run docs:build && gh-pages -d website"
},
"devDependencies": {
"@docsearch/css": "^3.3.3",
"@docsearch/js": "^3.3.3",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-eslint": "^9.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"dts-bundle-generator": "^7.0.0",
"eslint": "^8.23.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"fs-extra": "^10.1.0",
"gh-pages": "^2.2.0",
"husky": "^8.0.1",
"lunr": "^2.3.9",
"rollup": "^3.2.5",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-progress": "^1.1.2",
"tslib": "^2.5.0",
"typescript": "^4.8.3",
"vitepress": "^1.0.0-alpha.60"
}
}