-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.27 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.27 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@devlander/styled-components-theme",
"version": "1.1.261",
"license": "ISC",
"type": "commonjs",
"main": "dist/umd/index.js",
"types": "typings/bundle/index.d.ts",
"module": "dist/esm/index.js",
"config": {
"nativeInput": "index",
"webInput": "index",
"umdName": "DevlanderStyledComponentsTheme"
},
"files": [
"dist",
"typings"
],
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Devlander-Software/styled-components-theme.git"
},
"keywords": [
"typescript",
"styled-components",
"devlander"
],
"bugs": {
"url": "https://github.com/Devlander-Software/styled-components-theme/issues"
},
"homepage": "https://github.com/Devlander-Software/styled-components-theme#readme",
"scripts": {
"check-packages-dependencies": "npx check-package-dependencies",
"build": "yarn run prep-build && yarn run rollup",
"test": "jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src --fix",
"timeout": "delay 5",
"rollup": "yarn run build:index && npx rollup -c rollup.config.mjs",
"typecheck": "tsc --project ./tsconfig.json --emitDeclarationOnly",
"prep-build": "npx rimraf ./dist && npx rimraf ./typings",
"docs": "typedoc --out ./docs ./src",
"build:index": "cd ./src && yarn run build",
"test:coverage": "jest --coverage",
"prepare": "yarn run build",
"size": "size-limit",
"analyze": "size-limit --why",
"start-publish": "yarn run test && yarn run timeout && npm publish",
"test:failed": "jest --onlyFailures"
},
"peerDependencies": {
"@devlander/colors": "^0.0.6",
"@devlander/utils": "^0.0.72",
"colors": "*"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "Landon Johnson / Devlander",
"dependencies": {
"@devlander/colors": "^0.0.6",
"@devlander/utils": "^0.0.72",
"colors": "*",
"react": "^18.3.1",
"react-native": "^0.75.3",
"react-native-web": "^0.19.12"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@devlander/collect-exports-for-bundle": "^1.1.68",
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react-native": "^0.72.5",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.8.0",
"babel-jest": "^29.7.0",
"delay-cli": "2.0.0",
"depcheck": "^1.4.7",
"eslint": "^8.52.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest-dom": "latest",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-testing-library": "latest",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rollup": "^4.21.3",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^10.0.1",
"ts-jest": "^29.1.1",
"tslib": "^2.7.0",
"typescript": "^5.2.2"
},
"workspaces": [
"./src"
]
}