-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "@klinecharts/pro",
"version": "0.1.1",
"description": "Financial chart built out of the box based on KLineChart.",
"type": "module",
"main": "./dist/klinecharts-pro.umd.js",
"module": "./dist/klinecharts-pro.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/klinecharts/pro"
},
"keywords": [
"klinecharts",
"pro",
"candlestick",
"finance",
"stock",
"chart",
"canvas"
],
"author": "liihuu",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build-core": "tsc && vite build",
"build-dts": "dts-bundle-generator --no-banner true --umd-module-name klinechartspro -o dist/index.d.ts src/index.ts",
"build": "npm run build-core && npm run build-dts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:deploy": "npm run docs:build && gh-pages -d website"
},
"devDependencies": {
"@solidjs/testing-library": "^0.6.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/lodash": "^4.14.191",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"babel-preset-solid": "^1.6.10",
"dts-bundle-generator": "^7.2.0",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"gh-pages": "^5.0.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-plugin-solid": "^2.6.1",
"vitepress": "^1.0.0-alpha.75",
"vitest": "^0.28.4"
},
"dependencies": {
"lodash": "^4.17.21",
"solid-js": "^1.6.11"
},
"peerDependencies": {
"klinecharts": ">=9.0.0"
}
}