-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "desmos-react",
"version": "1.2.0",
"description": "React wrapper for Desmos",
"main": "index.js",
"files": [
"index.d.ts",
"index.js",
"index.tsx"
],
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ysulyma/desmos-react.git"
},
"bugs": {
"url": "https://github.com/ysulyma/desmos-react/issues"
},
"homepage": "https://github.com/ysulyma/desmos-react#readme",
"author": "Yuri Sulyma <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"dependencies": {
"@types/desmos": "^1.6.0"
},
"devDependencies": {
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@yuri/eslint-config": "^1.0.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"react": "^18.2.0"
},
"peerDependencies": {
"@types/react": ">=17.0.0",
"react": ">=17.0.0",
"typescript": ">=4.1.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"typescript": {
"optional": true
}
}
}