-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.62 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
83
84
85
86
87
88
89
90
91
92
{
"name": "jynx",
"version": "1.4.0",
"description": "Rapidly create and control responsive, theme-focused and type-safe styled-components, directly from your jsx.",
"main": "./dist/jynx.cjs.js",
"module": "./dist/jynx.js",
"typings": "./dist/index.d.ts",
"keywords": [
"react",
"typescript",
"css-in-js",
"cssinjs",
"css",
"style-props",
"styled-components",
"emotion"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/silkstudio/jynx.git"
},
"author": "Silk Studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/silkstudio/jynx/issues"
},
"homepage": "https://jynx.vercel.app",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && rollup -c",
"build:dev": "if [ -e \"dist\" ];then rm -rf \"dist\"; fi && rollup -c",
"watch": "rollup -c -w",
"format": "prettier --write \"src/**/*.+(ts|tsx|js|jsx|md)\"",
"lint": "eslint src --fix",
"test": "jest",
"test:dev": "if [ -e \"coverage\" ];then rm -rf \"coverage\"; fi && jest --coverage",
"precommit": "lint-staged && tsc",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "shipjs prepare"
},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^27.0.3",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"esbuild": "^0.17.5",
"eslint": "^8.2.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jsdom": "^19.0.0",
"lint-staged": "^12.0.2",
"pinst": "^3.0.0",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^2.60.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-esbuild": "^4.6.0",
"shipjs": "0.25.1",
"styled-components": "5.3.10",
"ts-essentials": "^9.0.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"csstype": "^3.0.10",
"deepmerge": "^4.2.2"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
}
}