-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
85 lines (85 loc) · 2.21 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
{
"name": "@kuma-ui/core",
"version": "1.5.8",
"description": "🐻 Kuma UI is a utility-first, zero-runtime CSS-in-JS library that offers an outstanding developer experience and optimized performance.",
"repository": {
"type": "git",
"url": "git+https://github.com/kuma-ui/kuma-ui.git"
},
"license": "MIT",
"keywords": [
"react",
"css-in-js",
"zero-runtime",
"front-end",
"design-system",
"styled-components"
],
"homepage": "https://www.kuma-ui.com",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./components/componentList": {
"types": "./dist/components/componentList.d.ts",
"require": "./dist/components/componentList.js",
"import": "./dist/components/componentList.mjs"
}
},
"typesVersions": {
"*": {
"components/componentList": [
"./dist/components/componentList.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run && vitest typecheck --run",
"typecheck": "tsc --noEmit --composite false",
"lint": "eslint './src/**/*.{js,ts,jsx,tsx}' --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint --fix './src/**/*.{js,ts,jsx,tsx}' --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@kuma-ui/sheet": "workspace:*",
"@kuma-ui/system": "workspace:*",
"@types/stylis": "^4.2.0",
"stylis": "^4.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.32",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitest/coverage-c8": "^0.31.4",
"globby": "^13.2.0",
"jsdom": "^22.1.0",
"ts-node": "^10.9.1",
"vitest": "^0.31.4"
},
"peerDependencies": {
"@types/react": "^18.0.32",
"next": ">=13.4.5",
"react": ">=18.2.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"next": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}