-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "@tek/ui",
"version": "1.0.0",
"private": true,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf coverage",
"dev": "tsup --watch",
"lint": "TIMING=1 eslint src/**/*.{ts,tsx} --fix",
"test": "jest"
},
"dependencies": {
"clsx": "^1.2.0",
"react-toggle-dark-mode": "^1.0.4"
},
"devDependencies": {
"@jest/types": "^29.5.0",
"@tek/eslint-config": "workspace:*",
"@tek/jest-config": "workspace:*",
"@tek/ts-config": "workspace:*",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.6",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"next": "^13.4.4",
"react": "^18.2.0"
},
"files": [
"dist/**"
],
"sideEffects": false
}