-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.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
{
"name": "luminacn",
"type": "module",
"bin": {
"luminacn": "./dist/cli/index.js"
},
"version": "3.4.0",
"description": "Copy-paste UI for Angular",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json && npm run copy-assets",
"build:registry": "node src/tools/generate-registry.js",
"build:docs": "node src/tools/generate-docs.js",
"extract:docs": "node src/tools/extractor.js",
"clean:templates": "tsx src/tools/remove-template-extension.ts",
"start": "tsx tools/cli/index.ts",
"copy-assets": "cpx \"src/packages/**/*.{template,json,css,ts}\" dist/packages/",
"release": "semantic-release"
},
"keywords": [
"angular",
"ui",
"cli",
"tailwind",
"shadcn",
"luminacn",
"component-library",
"design-system",
"minimalist"
],
"author": "https://github.com/coxxanthony",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.4.1",
"clsx": "^2.1.1",
"inquirer": "^13.4.1",
"tailwind-merge": "^3.5.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^25.6.0",
"cpx": "^1.5.0",
"semantic-release": "^25.0.3",
"ts-node": "^10.9.2"
},
"files": [
"dist/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/luminacn/ui"
}
}