forked from tradingview/lightweight-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.78 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"private": true,
"version": "4.0.0",
"name": "lightweight-charts",
"author": "TradingView, Inc.",
"license": "Apache-2.0",
"description": "Financial lightweight charts built with HTML5 canvas",
"bugs": {
"url": "https://github.com/tradingview/lightweight-charts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tradingview/lightweight-charts.git"
},
"module": "dist/lightweight-charts.esm.production.js",
"main": "index.js",
"typings": "dist/typings.d.ts",
"files": [
"dist/**",
"index.js"
],
"keywords": [
"financial-charting-library",
"charting-library",
"html5-charts",
"canvas",
"typescript",
"charting",
"charts"
],
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"fancy-canvas": "0.2.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "~13.1.3",
"@rollup/plugin-replace": "~3.1.0",
"@size-limit/file": "~7.0.5",
"@types/chai": "~4.3.0",
"@types/mocha": "~9.1.0",
"@types/node": "~16.11.26",
"@types/pixelmatch": "~5.2.1",
"@types/pngjs": "~6.0.0",
"@typescript-eslint/eslint-plugin": "~4.32.0",
"@typescript-eslint/eslint-plugin-tslint": "~4.32.0",
"@typescript-eslint/parser": "~4.32.0",
"bytes": "~3.1.1",
"chai": "~4.3.6",
"chai-exclude": "~2.1.0",
"cross-env": "~7.0.0",
"dts-bundle-generator": "~6.5.0",
"eslint": "~7.32.0",
"eslint-plugin-deprecation": "~1.3.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-jsdoc": "~37.9.2",
"eslint-plugin-markdown": "~2.2.1",
"eslint-plugin-mdx": "~1.16.0",
"eslint-plugin-prefer-arrow": "~1.2.1",
"eslint-plugin-tsdoc": "~0.2.14",
"eslint-plugin-unicorn": "~40.1.0",
"eslint-plugin-react": "~7.28.0",
"express": "~4.17.2",
"glob": "~7.2.0",
"markdown-it": "~12.3.2",
"markdown-it-anchor": "~8.4.1",
"markdownlint-cli": "~0.31.1",
"mocha": "~9.2.0",
"npm-run-all": "~4.1.5",
"pixelmatch": "~5.2.1",
"pngjs": "~6.0.0",
"puppeteer": "~13.3.2",
"rimraf": "~3.0.2",
"rollup": "~2.67.3",
"rollup-plugin-terser": "~7.0.2",
"size-limit": "~7.0.5",
"ts-node": "~10.5.0",
"ts-transformer-properties-rename": "~0.13.0",
"ts-transformer-strip-const-enums": "~1.0.1",
"tslib": "2.3.1",
"tslint": "6.1.3",
"tslint-eslint-rules": "~5.4.0",
"tslint-microsoft-contrib": "~6.2.0",
"ttypescript": "~1.5.13",
"typescript": "4.6.2"
},
"scripts": {
"clean": "rimraf lib/ dist/",
"bundle-dts": "tsc --noEmit --allowJs dts-config.js && dts-bundle-generator --config dts-config.js",
"tsc": "ttsc -p tsconfig.prod.json",
"tsc-watch": "npm run tsc -- --watch --preserveWatchOutput",
"tsc-verify": "node website/scripts/generate-versions-dts.js && tsc -b tsconfig.composite.json",
"lint": "npm-run-all -p lint:**",
"lint:eslint": "eslint --format=unix ./",
"lint:md": "markdownlint -i \"**/node_modules/**\" -i \"**/website/docs/api/**\" -i \"**/website/versioned_docs/**/api/**\" \"**/*.md\"",
"check-dts-docs": "eslint --format=unix ./dist/typings.d.ts",
"check-markdown-links": "node scripts/check-markdown-links.js",
"rollup": "rollup -c rollup.config.js",
"rollup-watch": "npm run rollup -- --watch",
"build": "npm-run-all tsc rollup bundle-dts",
"build:watch": "npm-run-all tsc -p tsc-watch rollup-watch",
"build:prod": "cross-env NODE_ENV=production npm run build",
"build:release": "cross-env BUILD_TAG=release npm run build:prod",
"prepare-release": "npm-run-all clean build:release && node ./scripts/clean-package-json.js",
"size-limit": "size-limit",
"verify": "npm-run-all clean -p lint check-markdown-links build:prod -p check-dts-docs tsc-verify test size-limit",
"test": "mocha tests/unittests/**/*.spec.ts"
}
}