-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.75 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
{
"name": "create-new-ui",
"version": "0.1.3",
"description": "A modern, semantic UI framework for building beautiful, accessible sites and apps.",
"type": "module",
"bin": {
"create-new-ui-app": "./dist/index.js"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"scripts": {
"build": "bunx tsc",
"dev": "bunx tsc --watch",
"start": "bun dist/index.js",
"lint": "bunx eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "bunx prettier --write \"**/*.{js,ts,tsx,json,md}\"",
"clean": "bunx rimraf dist node_modules *.tgz",
"clean:dist": "bunx rimraf dist",
"link-local": "bun run build && bun link",
"unlink-local": "bun unlink",
"prepare-pack": "bun run clean:dist && bun run build",
"pack-local": "bun run prepare-pack && npm pack",
"test-local": "bun run build && bun dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewDesignFile/create-new-ui.git"
},
"keywords": [
"foundations",
"new",
"ui"
],
"author": "@planetabhi",
"homepage": "https://new-ui.com",
"dependencies": {
"@clack/prompts": "^0.11.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@new-ui/colors": "^2.2.1",
"@new-ui/effects": "^0.1.8",
"@new-ui/reset": "^0.1.0",
"@new-ui/spacings": "^0.1.7",
"@new-ui/typography": "^0.1.10",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"typescript": "^5.9.3"
}
}