-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.6 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
{
"name": "@truenetworkio/ui",
"description": "UI components for TrueNetwork",
"version": "0.0.1",
"type": "module",
"repository": {
"url": "git+https://github.com/truenetworkio/ui.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./styles.css": {
"import": "./dist/styles/styles.css",
"require": "./dist/styles/styles.css"
},
"./styles": {
"import": "./dist/styles/styles.css",
"require": "./dist/styles/styles.css"
}
},
"files": [
"dist",
"dist/esm",
"dist/types"
],
"scripts": {
"clean": "rimraf dist",
"build": "node build.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"True Network"
],
"author": "Tushar Ojha",
"license": "ISC",
"dependencies": {
"@headlessui/react": "^2.2.0",
"@tailwindcss/postcss": "^4.0.14",
"@truenetworkio/sdk": "^0.0.19",
"lucide-react": "^0.483.0",
"next": "^15.2.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/cli": "^4.0.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.3",
"tailwindcss": "^4.0.14",
"tslib": "^2.8.1",
"typescript": "^5.8.2"
},
"style": "./dist/styles/styles.css",
"sideEffects": [
"**/*.css"
]
}