-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "ods-charts",
"description": "ODS Charts is based on Apache ECharts and provides Orange charts components.",
"version": "0.1.0-alpha.12",
"author": "Orange SA",
"contributors": [],
"license": "MIT",
"files": [
"./dist/**/*"
],
"main": "./dist/ods-charts.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "webpack",
"copyright-year": "node build/bump-copyright-year.mjs",
"netlify": "npm run build && cp -R dist docs/ && npm run typedoc",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"release": "npm pack && npm publish",
"serve": "npm run typedoc && serve .",
"serve:angular": "serve test/angular-ngx-echarts/dist/angular/",
"serve:angular-echarts": "serve test/angular-echarts/dist/angular-echarts/",
"serve:any": "serve",
"serve:react": "serve test/react/build/",
"serve:vue": "serve test/vue/dist/",
"typedoc": "typedoc --out docs/api src/ods-charts.ts --disableSources --excludePrivate --excludeProtected --readme docs/README.md && node build/add_head.mjs",
"watch": "webpack --watch --mode development"
},
"devDependencies": {
"echarts": "^5.5.1",
"prettier": "^3.3.3",
"serve": "^14.2.3",
"ts-loader": "^9.5.1",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}