-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "playground-code-show-flow",
"version": "1.0.3",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"playground-plugin"
],
"description": "Visualize TypeScript's code inference flow nodes",
"repository": {
"url": "https://github.com/orta/playground-code-show-flow"
},
"scripts": {
"build": "rollup -c rollup.config.js;",
"compile": "tsc",
"bootstrap": "node scripts/getDTS.js",
"start": "concurrently -p \"[{name}]\" -n \"ROLLUP,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn rollup -c rollup.config.js --watch\" \"yarn serve dist\"",
"prepublish": "yarn build",
"postinstall": "yarn bootstrap; yarn build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.0",
"@rollup/plugin-typescript": "^3.0.0",
"@types/react": "^16.9.23",
"concurrently": "^5.1.0",
"monaco-editor": "^0.19.3",
"node-fetch": "^2.6.0",
"rollup": "^1.31.0",
"serve": "^11.3.0",
"typescript": "^4.3.5"
},
"dependencies": {
"tslib": "^1.10.0"
}
}