-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "playground-live-transformer",
"version": "3.0.0",
"main": "dist/index.js",
"description": "A plugin to create a typescript transformer live in the playground",
"license": "MIT",
"keywords": [
"playground-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/kevinramharak/playground-live-transformer"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"compile": "tsc",
"typecheck": "tsc --watch --incremental",
"bootstrap": "node scripts/getDTS.js",
"prepublish": "yarn build",
"postinstall": "yarn build",
"watch": "yarn rollup -c rollup.config.js --watch",
"server": "yarn serve dist",
"prepack": "yarn build"
},
"devDependencies": {
"@jackfranklin/rollup-plugin-markdown": "^0.4.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-typescript": "^3.1.1",
"@types/react": "^16.14.60",
"concurrently": "^5.3.0",
"monaco-editor": "^0.50.0",
"node-fetch": "^2.7.0",
"rollup": "^1.32.1",
"rollup-plugin-external-globals": "^0.11.0",
"rollup-plugin-string": "^3.0.0",
"serve": "^14.2.3",
"ts-expose-internals": "5.5.3",
"typescript": "~5.5.3"
},
"dependencies": {
"tslib": "^2.6.3"
}
}