-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
82 lines (82 loc) · 1.93 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
80
81
82
{
"name": "use-tweaks",
"version": "0.3.2-alpha.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/use-tweaks.esm.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gsimone/use-tweaks.git"
},
"peerDependencies": {
"react": ">= 16.8.0",
"tweakpane": "^3.0.5"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.7.0",
"@tweakpane/core": "^1.0.6",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"dts-cli": "^0.17.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^6.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"size-limit": "^4.7.0",
"tslib": "^2.0.3",
"tweakpane": "^3.0.5",
"typescript": "^4.0.5"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test --passWithNoTests",
"lint": "dts lint",
"prepare": "dts build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"bracketSameLine": true,
"tabWidth": 2,
"printWidth": 120
},
"size-limit": [
{
"path": "dist/use-tweaks.cjs.production.min.js",
"limit": "1 KB"
},
{
"path": "dist/use-tweaks.esm.js",
"limit": "1 KB"
}
],
"dependencies": {
"change-case": "^4.1.1",
"get-value": "^3.0.1",
"set-value": "^3.0.2"
}
}