-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 3.08 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
{
"name": "isaac-lua-api-vscode",
"publisher": "Filloax",
"displayName": "Binding of Isaac Lua API",
"description": "Adds support and autocomplete for the The Binding of Isaac: Repentance modding API",
"version": "1.12.0",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/filloax/isaac-lua-api-vscode"
},
"bugs": {
"url": "https://github.com/filloax/isaac-lua-api-vscode/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Linters"
],
"keywords": [
"lua",
"isaac",
"repentance",
"modding",
"mod"
],
"activationEvents": [
"workspaceContains:**/metadata.xml",
"onLanguage:lua"
],
"main": "./out/extension.js",
"extensionDependencies": [
"sumneko.lua"
],
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify && npm run buildemmy",
"copyemmy": "node scripts/copyemmy.js",
"buildemmy": "python scripts/builddocfile.py && npm run copyemmy",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap && npm run buildemmy",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"contributes": {
"configuration": {
"title": "The Binding of Isaac Lua API",
"properties": {
"boi-lua.workspaceSettings": {
"type": "boolean",
"default": true,
"description": "Add some useful settings to the workspace settings.json (anm2 to XML association)."
},
"boi-lua.repentogonEnabled": {
"type": "boolean",
"default": true,
"description": "Enable Repentogon API support"
}
}
},
"commands": [
{
"command": "boi-lua.activate",
"title": "Manually activate Isaac Lua autocompletion for this workspace"
},
{
"command": "boi-lua.deactivate",
"title": "Manually deactivate Isaac Lua autocompletion for this workspace"
}
]
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "14.x",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vscode/test-electron": "^2.1.3",
"esbuild": "^0.14.39",
"eslint": "^8.14.0",
"glob": "^8.0.1",
"mocha": "^9.2.2",
"typescript": "^4.6.4"
},
"dependencies": {
"golden-fleece": "^1.0.9",
"isaac-lua-api-vscode": "file:"
}
}