forked from microsoft/vscode-webview-ui-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.84 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
{
"name": "@vscode/webview-ui-toolkit",
"version": "1.2.0",
"description": "A component library for building webview-based extensions in Visual Studio Code.",
"homepage": "https://github.com/microsoft/vscode-webview-ui-toolkit#readme",
"license": "MIT",
"author": "Microsoft Corporation",
"type": "module",
"bugs": {
"url": "https://github.com/microsoft/vscode-webview-ui-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-webview-ui-toolkit.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "start-storybook -p 6006",
"build": "rollup -c && tsc -p ./tsconfig.json && npm run doc && node ./scripts/move-react-build-dir.js",
"build:docs": "build-storybook",
"deploy:docs": "npm run build:docs && gh-pages -d storybook-static",
"doc": "api-extractor run --local",
"fmt": "prettier --config ./.prettierrc --check \"**/*.{ts,js,md}\"",
"fmt:fix": "prettier --config ./.prettierrc --write \"**/*.{ts,js,md}\"",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepublishOnly": "npm run build",
"test": "jest --verbose --coverage",
"test:webview": "npm run build && node ./scripts/setup-webview-test-env.js"
},
"dependencies": {
"@microsoft/fast-element": "^1.6.2",
"@microsoft/fast-foundation": "^2.38.0",
"@microsoft/fast-react-wrapper": "^0.1.18"
},
"peerDependencies": {
"react": ">=16.9.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@microsoft/api-extractor": "7.18.9",
"@microsoft/eslint-config-fast-dna": "^1.2.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@storybook/addon-a11y": "^6.4.0-beta.4",
"@storybook/addon-actions": "^6.4.0-beta.4",
"@storybook/addon-essentials": "^6.4.0-beta.4",
"@storybook/addon-links": "^6.4.0-beta.4",
"@storybook/html": "^6.4.0-beta.4",
"@storybook/theming": "^6.4.0-beta.4",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@vscode/codicons": "^0.0.22",
"babel-jest": "^27.2.4",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "^2.25.2",
"gh-pages": "^3.1.0",
"jest": "^27.2.4",
"prettier": "^2.2.1",
"rollup": "^2.40.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-transform-tagged-template": "0.0.3",
"tslib": "^2.1.0",
"typescript": "4.3.5",
"webpack": "^4.46.0"
},
"keywords": [
"vscode",
"visual studio code",
"webview",
"extension",
"ui",
"components",
"web components",
"react"
]
}