-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.79 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.79 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
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
{
"version": "0.3.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "http://github.com/birkir/dynamic-color.git"
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest --verbose",
"lint": "tsdx lint"
},
"peerDependencies": {
"@emotion/react": "*",
"react": ">=16",
"react-native": "*"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"resolutions": {
"typescript": "4.9.4"
},
"name": "dynamic-color",
"author": "Birkir Gudjonsson",
"module": "dist/dynamic-color.esm.js",
"size-limit": [
{
"path": "dist/dynamic-color.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/dynamic-color.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@emotion/native": "^11.10.0",
"@emotion/react": "^11.10.5",
"@size-limit/preset-small-lib": "^8.1.2",
"@testing-library/react-native": "^11.5.0",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"husky": "^8.0.3",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"jest-environment-node": "29.3.1",
"react-test-renderer": "18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.71.1",
"size-limit": "^8.1.2",
"ts-jest": "29.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "4.9.4"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}