-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.64 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
{
"name": "@cloudpss/web-components",
"version": "0.8.0",
"license": "MIT",
"author": {
"name": "CloudPSS",
"url": "https://www.cloudpss.net/"
},
"homepage": "https://github.com/CloudPSS/web-components",
"bugs": {
"url": "https://github.com/CloudPSS/web-components/issues"
},
"repository": {
"type": "GIT",
"url": "https://github.com/CloudPSS/web-components.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"scripts": {
"start": "vite",
"clean": "rimraf dist",
"build": "vite build",
"prepare": "husky",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ext .js,.ts ."
},
"prettier": "@cloudpss/prettier-config",
"commitlint": {
"extends": "@cloudpss"
},
"dependencies": {
"@types/chart.js": "^2.9.41",
"@types/markdown-it": "^13.0.8",
"chart.js": "^4.4.3",
"htmlparser2": "^9.1.0",
"incremental-dom": "^0.7.0",
"katex": "^0.16.10",
"lit": "^3.1.3",
"markdown-it": "^13.0.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.6.7",
"markdown-it-center-text": "^1.0.4",
"markdown-it-chart": "^0.2.0",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-footnote": "^3.0.3",
"markdown-it-front-matter": "^0.2.4",
"markdown-it-implicit-figures": "^0.12.0",
"markdown-it-ins": "^3.0.1",
"markdown-it-kbd": "^2.2.2",
"markdown-it-mark": "^3.0.1",
"markdown-it-multimd-table": "^4.2.3",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"mermaid": "^10.9.1",
"prismjs": "^1.29.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@cloudpss/commitlint-config": "^2.1.1",
"@cloudpss/eslint-config": "^2.1.1",
"@cloudpss/lint-staged-config": "^2.1.1",
"@cloudpss/prettier-config": "^2.1.1",
"@cloudpss/tsconfig": "^2.1.1",
"@types/katex": "^0.16.7",
"@types/node": "^20.12.12",
"@types/prismjs": "^1.26.4",
"cssnano": "^7.0.1",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"postcss-preset-env": "^9.5.14",
"rimraf": "^5.0.7",
"sass": "^1.77.2",
"type-fest": "^4.18.3",
"typescript": "~5.4.5",
"vite": "^5.2.12",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-dts": "^3.9.1"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}