-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 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
{
"publisher": "toon-format",
"name": "toon",
"displayName": "Token-Oriented Object Notation (TOON) Support",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.23.0",
"description": "Visual Studio Code extension for TOON format support",
"license": "MIT",
"homepage": "https://github.com/toon-format/vscode#readme",
"repository": {
"type": "git",
"url": "https://github.com/toon-format/vscode.git"
},
"bugs": {
"url": "https://github.com/toon-format/vscode/issues"
},
"keywords": [
"toon",
"format",
"serialization"
],
"categories": [
"Programming Languages",
"Formatters"
],
"main": "./dist/extension.mjs",
"engines": {
"vscode": "^1.95.0",
"node": ">=24.0.0"
},
"contributes": {
"commands": [
{
"command": "toon.helloWorld",
"title": "TOON: Hello World"
}
]
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"No tests yet\" && exit 0",
"test:types": "tsc --noEmit",
"package": "pnpm build && vsce package",
"publish": "pnpm build && vsce publish",
"vscode:prepublish": "pnpm build"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@types/node": "^24.10.1",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.2.1",
"eslint": "^9.39.1",
"tsdown": "^0.16.6",
"typescript": "^5.9.3"
}
}