forked from channel-io/bezier-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.3 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
{
"name": "bezier-vscode",
"version": "0.4.0",
"private": true,
"description": "VS Code extension for Bezier Design System",
"icon": "assets/channel-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/channel-io/bezier-react",
"directory": "packages/bezier-vscode"
},
"homepage": "https://github.com/channel-io/bezier-react/blob/main/packages/bezier-vscode/README.md",
"author": "Channel Corp",
"publisher": "ChannelCorp",
"displayName": "Bezier for VS Code",
"license": "Apache-2.0",
"keywords": [
"channel",
"bezier",
"extension"
],
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [
"onLanguage:typescript",
"onLanguage:scss",
"onLanguage:css"
],
"main": "./dist/client.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "TIMING=1 eslint --cache .",
"typecheck": "tsc --noEmit",
"clean": "run-s 'clean:*'",
"clean:build": "rm -rf dist",
"clean:cache": "rm -rf node_modules .turbo",
"vscode:prepublish": "yarn build",
"package": "yarn dlx vsce package --no-dependencies",
"publish": "yarn dlx vsce publish --no-dependencies --skip-duplicate"
},
"dependencies": {
"@channel.io/bezier-tokens": "0.3.0",
"vscode-languageclient": "^8.1.0",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.11"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/vscode": "^1.85.0",
"@vscode/test-electron": "^2.3.8",
"rollup": "^4.28.1"
}
}