package.json 890 B raw
1
{
2
	"name": "norns-ui",
3
	"version": "0.1.0",
4
	"description": "Interoperable web components for decentralized applications",
5
	"main": "dist/index.js",
6
	"bin": {
7
		"norns": "./dist/index.js"
8
	},
9
	"type": "module",
10
	"files": [
11
		"dist"
12
	],
13
	"types": "dist/custom-elements-jsx.d.ts",
14
	"scripts": {
15
		"build": "bun build src/index.ts --outdir dist --target node && bun run build:components && bun run build:types",
16
		"build:components": "bun scripts/build-components.ts",
17
		"build:types": "bun scripts/build-types.ts",
18
		"build:site": "bun scripts/build-site",
19
		"dev": "bun site/index.html --console"
20
	},
21
	"keywords": [
22
		"web-components",
23
		"cli",
24
		"shadcn",
25
		"components"
26
	],
27
	"devDependencies": {
28
		"@types/bun": "latest",
29
		"bun-plugin-tailwind": "^0.0.15",
30
		"tailwindcss": "^4.1.13"
31
	},
32
	"peerDependencies": {
33
		"typescript": "^5"
34
	},
35
	"dependencies": {
36
		"@noble/hashes": "^2.0.0"
37
	}
38
}