generated from Simon-He95/starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.37 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
{
"name": "@vscode-use/treeprovider",
"version": "0.0.5",
"description": "",
"author": "Simon He",
"license": "MIT",
"funding": "https://github.com/sponsors/Simon-He95",
"homepage": "https://github.com/vscode-use/treeprovider#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vscode-use/treeprovider.git"
},
"bugs": "https://github.com/vscode-use/treeprovider/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"vscode": "^1.77.0"
},
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "example1",
"title": "example1",
"icon": "icon.png"
}
]
},
"views": {
"example1": [
{
"id": "example1.id",
"name": "example123"
}
]
},
"commands": {
"title": "refresh tree",
"command": "refresh-tree"
}
},
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts --clean --minify",
"dev": "tsup ./src/index.ts --format cjs,esm --dts --clean --watch src",
"format": "prettier --write --cache .",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 --cache",
"lint:fix": "pnpm run lint --fix",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@types/node": "^18.0.0",
"@types/vscode": "^1.77.0",
"@vscode-use/treeprovider": "workspace:^0.0.0",
"bumpp": "^8.2.1",
"eslint": "^8.18.0",
"lint-staged": "^13.1.0",
"nanoid": "^4.0.2",
"picocolors": "^1.0.0",
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typescript": "^4.7.4",
"vitest": "^0.15.1"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
},
"eslintConfig": {
"extends": "@antfu"
}
}