-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.25 KB
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
{
"name": "@mntm/shared",
"version": "5.0.0",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"author": {
"name": "Anton Petrov",
"email": "im@petrov.engineer",
"url": "https://petrov.engineer"
},
"description": "Utility functions and constants shared across @mntm packages",
"license": "MIT",
"keywords": [
"mntm",
"shared",
"utility",
"utils",
"hooks"
],
"homepage": "https://github.com/maxi-team/shared",
"bugs": "https://github.com/maxi-team/shared/issues",
"repository": {
"type": "git",
"url": "https://github.com/maxi-team/shared.git"
},
"scripts": {
"prebuild": "shx rm -rf lib",
"build": "tsc",
"lint": "eslint --fix src/**/*.*"
},
"devDependencies": {
"@mntm/eslint-config": "^1.0.0",
"@types/node": "^17.0.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"eslint": "^8.5.0",
"shx": "^0.3.3",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}