-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 2.94 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
{
"name": "@ikun-svelte-devtools/core",
"description": "🍨 A vite plugin that improves the svelte development experience",
"type": "module",
"packageManager": "[email protected]",
"version": "0.0.1-beta.17",
"keywords": [
"vue-devtools",
"vite-plugin",
"vite-plugin-vue-devtools",
"svelte-devtools",
"vite-plugin-svelte-devtools",
"dx"
],
"license": "MIT",
"author": "baiwusanyu-c",
"homepage": "https://github.com/ikun-svelte/ikun-svelte-devtools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ikun-svelte/ikun-svelte-devtools.git"
},
"bugs": {
"url": "https://github.com/ikun-svelte/ikun-svelte-devtools/issues"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"files": [
"dist",
"*.d.ts"
],
"engines": {
"node": ">=14"
},
"scripts": {
"init": "pnpm i",
"dev": "pnpm run dev:other && pnpm run dev:client",
"dev:other": "esno scripts/dev.js",
"dev:client": "pnpm run --filter @ikun-svelte-devtools/client dev",
"build": "pnpm run clean:dist && esno scripts/build.js",
"play": "pnpm run --filter @ikun-svelte-devtools/playground dev",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"release": "bumpp package.json packages/*/**/package.json packages/*/package.json --commit --push --tag",
"clean:dist": "rimraf dist && esno scripts/clean.js",
"prepare": "npx simple-git-hooks",
"update:deps": "npx taze -w -r major && pnpm run init",
"publish:script": "esno scripts/publish.js"
},
"peerDependencies": {
"vite": "^3.0.0-0 || ^4.0.0-0"
},
"dependencies": {
"@ikun-svelte-devtools/client": "workspace:*",
"@ikun-svelte-devtools/icons": "workspace:*",
"@ikun-svelte-devtools/server": "workspace:*",
"@ikun-svelte-devtools/shared": "workspace:*",
"@ikun-svelte-devtools/utils-client": "workspace:*",
"@ikun-svelte-devtools/utils-server": "workspace:*",
"baiwusanyu-utils": "^1.0.16"
},
"devDependencies": {
"@sveltejs/eslint-config": "^6.0.4",
"@types/node": "^20.4.1",
"@types/splitpanes": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@unocss/eslint-config": "^0.53.5",
"@unocss/reset": "^0.53.5",
"bumpp": "^9.1.1",
"del": "^7.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.32.4",
"esno": "^0.17.0",
"fast-glob": "^3.3.1",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"prettier-plugin-svelte": "^3.0.3",
"rimraf": "^5.0.1",
"shelljs": "^0.8.5",
"simple-git-hooks": "^2.9.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{svelte,js,ts,jsx,tsx,json}": [
"prettier --write",
"eslint"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node vertify-commit.js"
}
}