-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "@kbox-labs/react-echarts",
"version": "1.4.2",
"description": "ECharts for React",
"productName": "React ECharts",
"author": "Hugo Corta <corta.hugo@gmail.com>",
"homepage": "https://hugocxl.github.io/react-echarts/",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"require": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/hugocxl/react-echarts"
},
"bugs": {
"url": "https://github.com/hugocxl/react-echarts/issues"
},
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsup --format=esm,cjs --no-dts --watch",
"build": "tsup",
"test": "vitest run",
"test:dev": "vitest dev -u",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist && rm -rf node_modules",
"prepare": "husky",
"release": "changeset publish",
"release-dev": "changeset version --snapshot dev && changeset publish --tag dev",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"echarts": "^5",
"react": ">=16"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/changelog-github": "^0",
"@changesets/cli": "^2",
"@types/echarts": "^4",
"@types/react": "^18",
"husky": "^9",
"lint-staged": "^15",
"tsup": "^8",
"typescript": "^5",
"vitest": "^2"
}
}