-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.84 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
{
"name": "astrouse",
"version": "0.0.0",
"private": true,
"description": "",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18.0"
},
"files": [
"dist"
],
"keywords": [
"astro",
"astrouse",
"dom"
],
"scripts": {
"build": "node scripts/build.mjs",
"build-dts": "npx tsc -p tsconfig.build.json && rollup -c rollup.dts.config.mjs",
"clean": "rimraf packages/*/dist temp .eslintcache",
"check": "npx tsc --incremental --noEmit",
"lint": "eslint --cache --ext .mjs,.js,.ts,.tsx . --ignore-path .gitignore",
"format": "prettier --write --cache .",
"format-check": "prettier --check --cache .",
"test": "vitest",
"test-unit": "vitest -c vitest.unit.config.ts",
"test-e2e": "node scripts/build.mjs xdom -f global -d && vitest -c vitest.e2e.config.ts",
"test-dts": "run-s build-dts",
"test-coverage": "vitest -c vitest.unit.config.ts --coverage",
"test-bench": "vitest bench",
"release": "node scripts/release.mjs",
"playground:dev": "node scripts/playground.mjs",
"playground:check": "node scripts/playground.mjs --check",
"playground:build": "pnpm build && node scripts/playground.mjs --build",
"docsu": "node scripts/playground.mjs --docsu",
"updatex": "node ./scripts/remove.mjs && pnpm i && pnpm --recursive update",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && pnpm check",
"commit-msg": "node scripts/verify-commit.mjs"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/vue": "^4.0.8",
"@babel/parser": "^7.23.6",
"@babel/types": "^7.23.6",
"@codspeed/vitest-plugin": "^2.3.1",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/hash-sum": "^1.0.2",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.8",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitest/coverage-istanbul": "^1.1.3",
"@vue/reactivity": "^3.4.7",
"@vueuse/core": "^10.7.1",
"astro": "^4.1.1",
"brotli": "^1.3.3",
"chalk": "^5.3.0",
"clsx": "^2.1.0",
"cross-env": "^7.0.3",
"conventional-changelog-cli": "^4.1.0",
"csstype": "^3.1.3",
"enquirer": "^2.4.1",
"esbuild": "^0.19.11",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^8.56.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.1",
"estree-walker": "^3.0.3",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"lodash-es": "^4.17.21",
"magic-string": "^0.30.5",
"markdown-table": "^3.0.3",
"marked": "^11.1.1",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.3",
"pretty-bytes": "^6.1.1",
"puppeteer": "^21.7.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"semver": "^7.5.4",
"serve": "^14.2.1",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.4.1",
"terser": "^5.26.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitest": "^1.1.3",
"vue": "^3.4.7",
"vue-tsc": "^1.8.27"
},
"author": "",
"license": "ISC"
}