-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.49 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.49 KB
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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@mdrbx/nerv-ui",
"version": "1.0.5",
"description": "NERV-UI: React component library inspired by NERV/MAGI interfaces from Neon Genesis Evangelion",
"private": false,
"license": "MIT",
"author": "mdrbx",
"repository": {
"type": "git",
"url": "git+https://github.com/mdrbx/nerv-ui.git"
},
"homepage": "https://mdrbx.github.io/nerv-ui",
"keywords": [
"react",
"ui",
"components",
"design-system",
"evangelion",
"eva",
"eva-ui",
"neon-genesis-evangelion",
"nerv",
"nerv-ui",
"magi",
"brutalist",
"cyberpunk",
"tailwindcss",
"framer-motion"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./tailwind.preset": "./tailwind.preset.js",
"./styles.css": "./dist/styles.css"
},
"files": [
"dist/",
"tailwind.preset.js"
],
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:lib": "tsup",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"framer-motion": "^11.0.0 || ^12.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"tailwindcss": "^3.4.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
},
"devDependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.1.6",
"@tailwindcss/postcss": "^4.1.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.15.21",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.27.0",
"eslint-config-next": "^15.3.3",
"framer-motion": "^12.12.1",
"jsdom": "^26.1.0",
"next": "^15.3.3",
"prism-react-renderer": "^2.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.7",
"tsup": "^8.5.1",
"typescript": "^5.8.3",
"vitest": "^3.2.1"
}
}