-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
138 lines (138 loc) · 3.8 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "island-dev",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --fix --ext .ts,.tsx,.js,.jsx --quiet ./src",
"dev": "tsup --watch",
"build": "tsup && npm run build:deps",
"build:deps": "tsx ./scripts/prebundle.ts",
"preview": "cd docs/build && serve .",
"prepare": "husky install",
"commit": "cz",
"test:unit": "vitest run",
"prepare:e2e": "tsx scripts/prepare-e2e.ts",
"test:e2e": "playwright test",
"release": "tsx ./scripts/release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"bin": {
"island": "bin/island.js"
},
"files": [
"dist",
"bin",
"README.md",
"src/runtime",
"src/shared",
"src/theme-default"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@iconify-json/carbon": "^1.1.14",
"@playwright/test": "1.26.1",
"@types/fs-extra": "^9.0.13",
"@types/hast": "^2.3.4",
"@types/lodash-es": "^4.17.6",
"@types/mdast": "^3.0.10",
"@types/node": "^18.11.7",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@unocss/preset-icons": "^0.49.2",
"@vitest/ui": "^0.25.3",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"commitizen": "^4.2.5",
"commitlint": "^17.3.0",
"compression": "^1.7.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"enquirer": "^2.3.6",
"eslint": "^8.29.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^5.1.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"minimist": "^1.2.8",
"polka": "^0.5.2",
"remark-mdx": "^2.2.1",
"remark-stringify": "^10.0.2",
"rollup": "^3.2.3",
"sass": "^1.58.0",
"semver": "^7.3.8",
"serve": "^14.0.1",
"sirv": "^2.0.2",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typescript": "^4.8.4",
"unist-util-visit": "^4.1.1",
"vitest": "^0.25.3"
},
"dependencies": {
"@babel/core": "^7.21.0",
"@babel/helper-plugin-utils": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/traverse": "^7.21.2",
"@loadable/component": "^5.15.2",
"@mdx-js/rollup": "2.1.3",
"@types/babel__core": "^7.20.0",
"@types/babel__helper-plugin-utils": "^7.10.0",
"@types/babel__traverse": "^7.18.3",
"@types/polka": "^0.5.4",
"@types/resolve": "^1.20.2",
"@vitejs/plugin-react": "^2.2.0",
"acorn": "^8.8.1",
"cac": "^6.7.14",
"esbuild": "^0.17.11",
"eslint-config-prettier": "^8.5.0",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"github-slugger": "^2.0.0",
"glob": "^9.1.0",
"hast-util-from-html": "^1.0.0",
"lodash-es": "^4.17.21",
"mdast-util-mdxjs-esm": "^1.3.0",
"ora": "^6.1.2",
"prettier": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-router-dom": "6.4.3",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^2.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"resolve": "^1.22.1",
"shiki": "^0.12.1",
"unified": "^10.1.2",
"unocss": "^0.48.4",
"vite": "3.1.4"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}