-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.28 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
{
"name": "echarts-solid",
"version": "0.2.0",
"description": "ECharts components for SolidJS",
"license": "MIT",
"author": "Aleksandr Lesnenko",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/alxnddr/echarts-solid.git"
},
"homepage": "https://github.com/alxnddr/echarts-solid#readme",
"bugs": {
"url": "https://github.com/alxnddr/echarts-solid/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"dev": "vite serve dev",
"build": "tsup",
"test": "vitest",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{ts,tsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li"
},
"dependencies": {
"@solid-primitives/refs": "^1.0.8",
"@solid-primitives/resize-observer": "^2.0.26"
},
"peerDependencies": {
"echarts": "^5.5.1",
"solid-js": "^1.8.22"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"concurrently": "^8.2.2",
"esbuild": "^0.23.1",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^9.9.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"jsdom": "^25.0.0",
"prettier": "3.3.3",
"solid-js": "^1.8.22",
"tsup": "^8.2.4",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.0.5"
},
"keywords": [
"solid"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8.6.0"
}
}