package.json 941 B raw
1
{
2
	"name": "norns-ui",
3
	"version": "0.1.1",
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
		"preview": "bun site-dist/index.html --console"
21
	},
22
	"keywords": [
23
		"web-components",
24
		"cli",
25
		"shadcn",
26
		"components"
27
	],
28
	"devDependencies": {
29
		"@types/bun": "latest",
30
		"bun-plugin-tailwind": "^0.0.15",
31
		"tailwindcss": "^4.1.13"
32
	},
33
	"peerDependencies": {
34
		"typescript": "^5"
35
	},
36
	"dependencies": {
37
		"@noble/hashes": "^2.0.0"
38
	}
39
}