-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
{
"name": "react-math-keyboard",
"version": "1.6.8",
"private": false,
"declaration": true,
"description": "Customizable math keyboard for React",
"main": "./dist/react-math-keyboard",
"types": "./dist/react-math-keyboard.d.ts",
"homepage": "https://krirkrirk.github.io/react-math-keyboard/",
"keywords": [
"math",
"keyboard",
"react",
"input",
"formula",
"symbols",
"science",
"mathematics",
"equations"
],
"author": "Robin Granda",
"repository": {
"type": "git",
"url": "https://github.com/krirkrirk/react-math-keyboard.git"
},
"files": [
"dist"
],
"scripts": {
"build:example": "npm run build && webpack --mode development --config webpack.docs.config.js",
"deploy": "npm run build:example && gh-pages -d docs",
"ghpublish": "gh-pages -d docs",
"declare": "dts-bundle --name react-math-keyboard --main src/index.tsx --out ../dist/react-math-keyboard.d.ts",
"prepublishOnly": "webpack --mode=production",
"webpack": "webpack",
"start": "webpack serve --mode=development --open",
"build": "webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@types/jquery": "^3.5.16",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.0.11",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"dependencies": {
"jquery": "^3.6.4",
"mathquill4keyboard": "^0.10.10",
"react-device-detect": "^2.2.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}