forked from skiff-org/skiff-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2 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
{
"name": "@skiff-org/skiff-ui",
"version": "1.2.5",
"prepublish": "tsc",
"main": "./src/index.ts",
"module": "./built/src/index.d.ts",
"packageManager": "[email protected]",
"sideEffects": [
"*.css"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/esm/index.css": {
"import": "./dist/esm/index.css",
"require": "./dist/cjs/index.css"
}
},
"repository": {
"type": "git",
"url": "https://github.com/skiff-org/skiff-ui"
},
"files": [
"dist",
"src",
"built"
],
"types": "./built/src/index.d.ts",
"author": "Skiff World Inc.",
"keywords": [
"react",
"react-component",
"components",
"skiff",
"skiff-ui",
"react ui"
],
"license": "MIT",
"scripts": {
"emit-ts": "yarn tsc --build",
"lint": "yarn run -T eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"build": "yarn node build.js",
"watch": "WATCH=1 yarn build",
"clean": "rm -rf dist",
"optimize:svg": "echo \"disabled until svg id issue is fixed (see PROD-341)\""
},
"engines": {
"node": ">=10.13.0"
},
"dependencies": {
"@floating-ui/react-dom": "^1.0.1",
"@floating-ui/react-dom-interactions": "^0.11.0",
"framer-motion": "^6.3.3",
"lodash": "^4.17.21",
"notistack": "^2.0.3",
"react-device-detect": "2.1.2",
"styled-components": "^5.3.3"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/lodash": "^4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.24",
"@types/svgo": "^2",
"css-loader": "^5.2.6",
"esbuild": "^0.15.6",
"esbuild-node-externals": "^1.5.0",
"esbuild-plugin-svgr": "^1.0.1",
"esbuild-sass-plugin": "^2.2.6",
"identity-obj-proxy": "^3.0.0",
"prettier": "^2.*",
"sass": "^1.53.0",
"svgo": "^2.8.0",
"typescript": "^5.0.0"
},
"description": ""
}