-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.31 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.31 KB
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
{
"name": "autopathcomment",
"displayName": "AutoPathComment",
"description": "Adds a comment with the file's relative path at the top of the file upon saving",
"version": "0.0.8",
"publisher": "icoretech",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/icoretech/autopathcomment.git"
},
"engines": {
"vscode": "^1.107.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "AutoPathComment",
"properties": {
"autopathcomment.commentSyntaxMap": {
"type": "object",
"markdownDescription": "Custom mapping of file extensions to single-line comment prefixes. Keys must include the dot (e.g. `.ts`) and values are prefixes like `//` or `#`. User values override built-in defaults.",
"default": {},
"additionalProperties": {
"type": "string"
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"prepare": "node ./scripts/prepare-husky.mjs",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src --max-warnings=0",
"test": "vscode-test",
"vsce:package": "vsce package",
"vsce:publish": "vsce publish",
"check": "npm run check-types && npm run lint && npm test"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@types/mocha": "10.0.10",
"@types/node": "25.0.8",
"@types/vscode": "1.108.1",
"@typescript-eslint/eslint-plugin": "8.53.0",
"@typescript-eslint/parser": "8.53.0",
"@vscode/test-cli": "0.0.12",
"@vscode/test-electron": "2.5.2",
"@vscode/vsce": "3.7.1",
"esbuild": "0.27.2",
"eslint": "9.39.2",
"npm-run-all": "4.1.5",
"typescript": "5.9.3"
}
}