This repository was archived by the owner on Aug 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.14 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
72
73
74
75
76
77
78
79
{
"name": "vscode-cse-framework",
"displayName": "cse-framework",
"description": "VSCode extension for cse repositories - provides templates, snippets, etc.",
"version": "0.0.18",
"publisher": "manas-talukdar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/computer-science-engineering/vscode-cse-framework"
},
"bugs": {
"url": "https://github.com/computer-science-engineering/vscode-cse-framework/issues"
},
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Other",
"Snippets"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"snippets": [
{
"language": "java",
"path": "./src/snippets/java.code-snippets"
},
{
"language": "json",
"path": "./src/snippets/json.code-snippets"
},
{
"language": "markdown",
"path": "./src/snippets/markdown.code-snippets"
},
{
"language": "python",
"path": "./src/snippets/python.code-snippets"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"clean": "rimraf dist/",
"compile": "npm run clean && webpack --config ./build/node-extension.webpack.config.js",
"watch": "npm run clean && webpack --watch --config ./build/node-extension.webpack.config.js",
"package": "npm run clean && webpack --mode production --devtool hidden-source-map --config ./build/node-extension.webpack.config.js",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"vsce-package": "vsce package"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"@types/vscode": "^1.53.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"ts-loader": "^8.0.15",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"fs-extra": "^9.1.0"
}
}