-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.67 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
{
"name": "@type-challenges/playground-plugin",
"displayName": "Type Challenges Integration",
"version": "0.1.0",
"main": "dist/index.js",
"description": "Playground integration for Type Challenges",
"license": "MIT",
"keywords": [
"playground-plugin",
"type-challenges"
],
"repository": {
"type": "git",
"url": "https://github.com/type-challenges/playground-type-challenges-plugin"
},
"scripts": {
"test": "svelte-check",
"build": "rollup -c rollup.config.js",
"compile": "tsc",
"bootstrap": "ts-node scripts/getDTS.ts",
"dev": "yarn start",
"start": "concurrently -p \"[{name}]\" -n \"ROLLUP,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn rollup -c rollup.config.js --watch\" \"yarn serve dist -p 5000\"",
"prepublishOnly": "yarn build",
"postinstall": "yarn bootstrap && yarn build",
"release": "npx bumpp --commit --tag --push && yarn publish --non-interactive"
},
"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/markdown-it": "^10.0.2",
"@types/node": "^14.14.9",
"@types/node-fetch": "^2.5.7",
"@types/prismjs": "^1.16.2",
"@types/react": "^16.9.23",
"concurrently": "^5.1.0",
"markdown-it": "^12.0.2",
"monaco-editor": "^0.19.3",
"node-fetch": "^2.6.0",
"rollup": "^1.31.0",
"rollup-plugin-svelte": "^6.1.1",
"serve": "^13.0.2",
"svelte-check": "^1.1.13",
"svelte-preprocess": "^4.6.0",
"ts-node": "^9.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"svelte": "^3.29.7",
"tslib": "^1.10.0"
}
}