-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.51 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
{
"activationEvents": [
"onStartupFinished",
"onCommand:sortier.run"
],
"bugs": {
"url": "https://github.com/sortier/sortier-vscode/issues"
},
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"category": "Sortier",
"command": "sortier.run",
"title": "Run"
}
],
"configuration": {
"properties": {
"sortier.onSave": {
"default": false,
"description": "Runs sortier on save",
"type": "boolean"
}
},
"title": "Sortier",
"type": "object"
}
},
"description": "Code sorting via sortier",
"devDependencies": {
"@snowcoders/renovate-config": "3.0.0-beta.17",
"@types/estree": "1.0.6",
"@types/node": "22.10.10",
"@types/vscode": "1.70.0",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"@vscode/vsce": "3.2.1",
"changelog-updater": "2.0.3",
"esbuild": "0.24.2",
"eslint": "9.16.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"husky": "9.1.7",
"lint-staged": "15.4.2",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"sortier": "2.0.2",
"typescript": "5.7.3"
},
"displayName": "Sortier - Code sorter",
"engines": {
"vscode": "^2023.0.0"
},
"homepage": "https://github.com/snowcoders/sortier-vscode",
"keywords": [
"sortier",
"sort",
"sorter",
"sorting"
],
"license": "MIT",
"main": "./dist/extension.js",
"name": "sortier-vscode",
"publisher": "Snowcoders",
"repository": {
"type": "git",
"url": "https://github.com/snowcoders/sortier-vscode.git"
},
"scripts": {
"build": "npm run build:prod",
"build:after-esm-implemented": "tsc -p ./",
"build:base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"build:dev": "npm run build:base -- --sourcemap",
"build:prod": "npm run build:base -- --minify",
"clean": "rimraf dist",
"husky:commit-msg": "echo 'No commitlint installed'",
"husky:pre-commit": "npx --no lint-staged",
"husky:pre-push": "npm run test",
"prepare": "npm run clean && npm run build && npx --no-install husky install",
"test": "echo 'No tests, be sure to run manual tests'",
"version": "changelog-updater && git add .",
"vsce": "vsce",
"vscode:prepublish": "npm run build:prod",
"watch": "npm run build:dev -- --watch"
},
"version": "2.0.9"
}