-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "@enalmada/nextui-admin",
"version": "0.0.10",
"scripts": {
"build": "rm -rf dist && bun build.ts && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly",
"dev": "cd website && bun run dev",
"lint": "eslint . --ext .ts,.tsx,.cjs,.mjs && bun type-check",
"lint:fix": "eslint . --fix --ext .ts,.tsx,.cjs,.mjs && bun type-check",
"precommit": "bun lint-staged",
"prepare": "husky install",
"release": "bunx changeset publish",
"test": "bun run test:unit",
"test:unit": "cross-env NODE_ENV=test vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@enalmada/next-themes": "^0.2.4"
},
"devDependencies": {
"@changesets/cli": "2.27.1",
"@enalmada/bun-externals": "0.0.3",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@scaleway/changesets-renovate": "1.3.2",
"@types/node": "20.10.4",
"@types/react": "18.2.42",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"bun-types": "1.0.15",
"cross-env": "7.0.3",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"fixpack": "4.0.0",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"prettier": "3.1.0",
"typescript": "5.3.3",
"vitest": "1.0.2"
},
"peerDependencies": {
"@nextui-org/react": "^2.1.13",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"next": "^13.5.4",
"react": "^18.2.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Adam Lane",
"description": "nextui admin components",
"keywords": [
"nextui admin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Enalmada/nextui-admin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enalmada/nextui-admin.git"
},
"homepage": "https://github.com/Enalmada/nextui-admin",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module"
}