forked from DaughterOfMars/move-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.05 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
{
"name": "sui-move-formatter",
"displayName": "SUI Move Formatter",
"description": "A formatter for the SUI move language with Development features.",
"version": "0.0.1",
"engines": {
"vscode": "^1.67.2",
"node": ">= 10"
},
"keywords": [
"move",
"sui",
"formatter"
],
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:move"
],
"main": "./dist/extension.js",
"scripts": {
"build": "napi build --platform --release dist",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"package": "vsce package -o dist/sui-move-formatter.vsix",
"install:local": "code --install-extension dist/sui-move-formatter.vsix",
"esbuild-base": "esbuild ./src/extension.ts --bundle --loader:.node=copy --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"typescript": "^5.3.3",
"@napi-rs/cli": "^2.18.2",
"ava": "^6.0.1"
},
"languages": [
{
"id": "move",
"aliases": [
"Move",
"move"
],
"extensions": [
".move"
]
}
],
"dependencies": {
"esbuild": "^0.20.2",
"vsce": "^2.15.0"
},
"ava": {
"timeout": "3m"
},
"napi": {
"name": "sui-move-formatter-rs"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/DaughterOfMars/move-formatter.git"
},
"publisher": "alephresearch"
}