generated from antfu/starter-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.42 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
{
"publisher": "sooniter",
"name": "pnpm-lock-goto",
"displayName": "pnpm-lock-goto",
"version": "0.1.2",
"private": true,
"packageManager": "pnpm@8.6.2",
"description": "",
"author": "sooniter <sooniter@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/SoonIter/vscode-pnpm-lock-goto#readme",
"repository": {
"type": "git",
"url": "https://github.com/SoonIter/vscode-pnpm-lock-goto"
},
"bugs": {
"url": "https://github.com/SoonIter/vscode-pnpm-lock-goto/issues"
},
"categories": [
"Other"
],
"main": "dist/index.js",
"icon": "assets/pnpm-lock.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.69.0"
},
"activationEvents": [
"onLanguage:yaml"
],
"scripts": {
"build": "node ./scripts/checkBundle.js && tsup src/index.ts --external vscode --minify",
"changeset": "changeset",
"autoChangeset": "node ./scripts/autoCreateChangeset.js",
"dev": "tsup src/index.ts --external vscode --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pack": "vsce package --no-dependencies",
"prepare": "simple-git-hooks",
"publish": "vsce publish --no-dependencies",
"release": "changeset version && nr publish",
"test": "vitest",
"typecheck": "tsc --noEmit",
"vscode:prepublish": "nr build"
},
"devDependencies": {
"@antfu/eslint-config": "^2.0.0",
"@antfu/ni": "^0.21.0",
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@pnpm/dependency-path": "^2.1.1",
"@pnpm/lockfile-file": "8.0.2",
"@pnpm/lockfile-types": "^5.0.0",
"@pnpm/logger": "^5.0.0",
"@pnpm/reviewing.dependencies-hierarchy": "^2.0.4",
"@types/node": "^18.15.3",
"@types/vscode": "^1.69.0",
"eslint": "^8.36.0",
"esno": "^0.16.3",
"lint-staged": "^13.2.0",
"picocolors": "^1.0.0",
"pnpm": "8.6.2",
"rimraf": "^5.0.0",
"simple-git-hooks": "^2.8.1",
"tsup": "^7.0.0",
"typescript": "^5.0.2",
"vite": "^4.2.0",
"vitest": "^0.33.0",
"vsce": "^2.10.0"
},
"pnpm": {
"patchedDependencies": {
"@pnpm/lockfile-file@8.0.2": "patches/@pnpm__lockfile-file@8.0.2.patch"
}
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/lint-staged",
"commit-msg": "./node_modules/.bin/commitlint -e $HUSKY_GIT_PARAMS"
},
"lint-staged": {
"*.{js,ts,tsx,md,json}": [
"eslint --fix"
]
}
}