-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 2.91 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
{
"name": "svelte-kit-inspector",
"description": "🧩 jump to local IDE source code while click the element of browser automatically.",
"private": false,
"type": "module",
"version": "1.0.3",
"packageManager": "[email protected]",
"keywords": [
"typescript",
"javascript",
"DX",
"vue",
"vue3",
"vite",
"react",
"svelte",
"web component"
],
"license": "MIT",
"author": "baiwusanyu-c",
"homepage": "https://github.com/baiwusanyu-c",
"repository": "https://github.com/ikun-svelte/svelte-kit-inspector",
"bugs": "https://github.com/ikun-svelte/svelte-kit-inspector/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",
"README.md",
"README.ZH-CN.md",
"src/app.js",
"src/load-kit.js",
"src/load.js",
"src/Overlay.svelte",
"src/components/Logo.svelte"
],
"engines": {
"node": ">=v14"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"scripts": {
"init": "pnpm i",
"dev": "unbuild --stub",
"play": "pnpm run --filter svelte-kit-inspector-playground dev",
"build": "tsup",
"release": "bumpp package.json --commit --push --tag",
"publish:npm": "pnpm publish --no-git-checks --access public",
"lint:fix": "eslint --fix ./ --ext .vue,.js,.ts,.jsx,.tsx,.json",
"clean": "rimraf dist",
"prepare": "npx simple-git-hooks",
"test": "vitest",
"test:update": "vitest -u",
"test:coverage": "vitest --coverage"
},
"peerDependencies": {
"ansi-colors": "^4.1.3",
"baiwusanyu-utils": "^1.0.14",
"magic-string": "^0.30.0",
"svelte": "^4.0.5"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"baiwusanyu-utils": "^1.0.14",
"magic-string": "^0.30.0",
"svelte": "^4.0.5"
},
"devDependencies": {
"@sveltejs/eslint-config": "^6.0.4",
"eslint-plugin-svelte": "^2.32.2",
"@typescript-eslint/parser": "^5.61.0",
"@types/node": "^20.1.3",
"@vitest/coverage-c8": "^0.32.0",
"@vitest/ui": "^0.32.0",
"bumpp": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"git-ensure": "^0.1.0",
"lint-staged": "^13.2.2",
"magic-string-ast": "^0.1.2",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.7.0",
"typescript": "5.1.3",
"unbuild": "^1.2.1",
"vite": "^4.4.4",
"vitest": "^0.32.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node verify-commit.js"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,svelte}": [
"eslint ./src --fix"
]
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "plugin:svelte/prettier"
}
}