-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 978 Bytes
/
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
{
"name": "ts-playground-plugin-github-explorer",
"description": "Explore a github repo on typescript playground",
"version": "0.0.1",
"main": "dist/index.js",
"keywords": [
"playground-plugin"
],
"license": "MIT",
"scripts": {
"start": "npm run watch",
"watch": "cross-env NODE_ENV=development rollup -c -w",
"build": "cross-env NODE_ENV=production rollup -c"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^3.0.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"monaco-editor": "^0.20.0",
"node-fetch": "^3.1.1",
"rollup": "^1.31.1",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.2.0",
"serve": "^11.3.0",
"svelte": "^3.18.2",
"typescript": "latest"
},
"dependencies": {
"tslib": "^1.10.0"
}
}