-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
79 lines (79 loc) · 2.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
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
{
"type": "module",
"main": "./dist/ts2fable.js",
"files": [
"dist/"
],
"bin": {
"ts2fable": "./dist/ts2fable.js"
},
"name": "ts2fable",
"version": "0.0.0",
"description": "TypeScript definition files parser for fable-compiler",
"scripts": {
"ts2fable": "node ./build/cli/ts2fable.js",
"test": "mocha ./build/test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fable-compiler/ts2fable"
},
"keywords": [
"fable",
"fable-compiler",
"fsharp",
"F#",
"TypeScript"
],
"author": "Alfonso Garcia-Caro (https://twitter.com/alfonsogcnunez)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fable-compiler/ts2fable/issues"
},
"homepage": "https://github.com/fable-compiler/ts2fable#readme",
"dependencies": {
"typescript": "^5.1.6"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@monaco-editor/react": "^4.3.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.4",
"@types/react": "^18.0.28",
"babel-loader": "^9.1.2",
"bulma": "^0.9.3",
"bulma-pageloader": "^2.1.0",
"bulma-tooltip": "^2.0.1",
"clipboard": "^2.0.6",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^2.7.5",
"mocha": "^10.2.0",
"monaco-editor": "^0.40.0",
"path-browserify": "^1.0.1",
"prepend-file": "^2.0.0",
"process": "^0.11.10",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resize-detector": "^9.1.0",
"rollup": "^3.20.1",
"sass": "^1.59.3",
"sass-loader": "^13.2.1",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}