-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.19 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.19 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
{
"name": "@vscode-elements/webview-playground",
"version": "1.10.0",
"description": "Handy web components for emulating the VSCode Webview environment.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vscode-elements/webview-playground.git"
},
"bugs": {
"url": "https://github.com/vscode-elements/webview-playground/issues"
},
"homepage": "https://github.com/vscode-elements/webview-playground",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "serve",
"dev": "serve",
"clean": "rimraf -g \"./dist/**/*.d.ts?(.map)\" && rimraf -g \"vscode-elements-webview-playground-*.tgz\"",
"build": "npm run clean && tsc",
"get-themes:dev": "nodemon --ignore \"dist/themes/*.js\" scripts/get-themes.js",
"get-themes": "node scripts/get-themes.js"
},
"author": "Adam Bender <szoftverhiba@gmail.com>",
"license": "MIT",
"devDependencies": {
"nodemon": "^3.1.7",
"playwright": "^1.48.2",
"rimraf": "^6.0.1",
"serve": "^14.2.3",
"typescript": "^5.6.3"
}
}