-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.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
{
"private": true,
"name": "@open-editor/monorepo",
"workspaces": [
"packages/*",
"playgrounds/*"
],
"type": "module",
"description": "🚀 A web devtools for fast find source code.",
"scripts": {
"build": "concurrently --success all -r -m 1 'turbo run build --filter @open-editor/* --log-order grouped'",
"clean": "rimraf -g {packages/**/.turbo,node_modules/.cache}",
"dev": "turbo run dev --filter @open-editor/* --log-order stream",
"start": "esno scripts/start.ts",
"play": "pnpm start --script=dev",
"lint": "pnpm eslint . --ext .ts,.tsx --ignore-pattern='/playground/*'",
"format": "prettier --write '**/*.{vue,ts,tsx,json,md}'",
"postinstall": "simple-git-hooks",
"release": "run-s build publish:ci",
"test": "turbo run test",
"check": "tsc --noEmit && turbo run check --filter @open-editor/* --log-order grouped",
"versions": "run-s version:ci format",
"version:ci": "changeset version",
"publish:ci": "changeset publish",
"install:ci": "pnpm install --ignore-scripts"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"keywords": [
"open-editor",
"rollup-plugin",
"vite-plugin",
"webpack-plugin",
"nextjs-devtools",
"react-devtools",
"nuxt-devtools",
"vue-devtools",
"web-devtools",
"devtools"
],
"author": "zjxxxxxxxxx <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-syntax-typescript": "^7.22.5",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/babel__core": "^7.20.2",
"@types/minimist": "^1.2.2",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"autoprefixer": "^10.4.16",
"chalk": "^5.3.0",
"concurrently": "^8.2.0",
"consola": "^3.2.3",
"enquirer": "^2.4.1",
"esbuild": "^0.24.0",
"esbuild-register": "^3.6.0",
"eslint": "^8.47.0",
"esno": "^4.8.0",
"fast-glob": "^3.3.1",
"lint-staged": "^13.3.0",
"magic-string": "^0.30.14",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-minify-selectors": "^6.0.0",
"prettier": "^3.4.1",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-esbuild": "^6.0.0",
"simple-git-hooks": "^2.9.0",
"turbo": "^2.3.3",
"typescript": "^5.1.6",
"vitest": "^0.34.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"packages/*/src/**/*.{ts,tsx}": [
"eslint --cache --fix"
]
}
}