This repository was archived by the owner on Jun 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.81 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
95
96
97
98
{
"name": "box-drawing-sidebar",
"displayName": "Box Drawing Sidebar",
"version": "0.0.2",
"description": "Sidebar containing Box Drawing characters to insert",
"categories": [
"Other"
],
"homepage": "https://github.com/esdmr/box-drawing-sidebar#readme",
"bugs": "https://github.com/esdmr/box-drawing-sidebar/issues",
"repository": "https://github.com/esdmr/box-drawing-sidebar",
"license": "MIT",
"author": "Saeed M Rad <esdmr0@gmail.com> (https://github.com/esdmr)",
"publisher": "esdmr",
"browser": "./resources/extension.js",
"scripts": {
"build": "pnpm run build:extension && pnpm run build:webviews",
"build:extension": "rollup --config rollup/extension.js",
"build:webviews": "pnpm run build:webviews:js && pnpm run build:webviews:css",
"build:webviews:js": "rollup --config rollup/webviews.js",
"build:webviews:css": "node scripts/build-webviews-css.js",
"changeset": "changeset",
"changeset:version": "changeset version",
"clean": "bash scripts/clean.sh",
"preinstall": "npx -y only-allow pnpm",
"lint": "xo src rollup scripts",
"lint:fix": "pnpm run lint -- --fix",
"prepack": "node scripts/prepack.js",
"postpack": "node scripts/postpack.js",
"package": "node scripts/package.js",
"vscode:prepublish": "echo You may not run vsce directly. Use: pnpm run package && exit 1",
"watch": "pnpm run watch:extension & pnpm run watch:webviews",
"watch:extension": "pnpm run build:extension -- --watch",
"watch:webviews": "pnpm run watch:webviews:js && pnpm run watch:webviews:css",
"watch:webviews:js": "pnpm run build:webviews:js -- --watch",
"watch:webviews:css": "pnpm run build:webviews:css -- --watch"
},
"contributes": {
"views": {
"box-drawing-sidebar": [
{
"id": "box-drawing-sidebar.box-drawing",
"name": "Box Drawing",
"icon": "resources/box-drawing/icon.svg",
"type": "webview",
"visibility": "visible"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "box-drawing-sidebar",
"title": "Box Drawing",
"icon": "resources/icon.svg"
}
]
}
},
"activationEvents": [
"onView:box-drawing-sidebar.box-drawing"
],
"devDependencies": {
"@changesets/cli": "2.26.1",
"@rollup/plugin-node-resolve": "15.0.2",
"@types/node": "16.18.29",
"@types/vscode": "1.65.0",
"@typescript/lib-dom": "npm:@types/web@0.0.99",
"esbuild": "0.16.17",
"execa": "7.1.1",
"rollup": "3.21.6",
"rollup-plugin-esbuild": "5.0.0",
"vsce": "2.15.0",
"xo": "0.51.0"
},
"engines": {
"node": ">=16",
"vscode": "^1.65.0"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"packageManager": "pnpm@8.5.0",
"pnpm": {
"packageExtensions": {
"eslint-import-resolver-webpack": {
"peerDependenciesMeta": {
"webpack": {
"optional": true
}
}
}
}
}
}