-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.59 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.59 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "citadel_cli",
"description": "A hierarchical command line (CLI) for your webapp",
"keywords": [
"react",
"command",
"cli",
"interface",
"console"
],
"author": {
"name": "James Childers",
"email": "james.childers@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jchilders/citadel_cli.git"
},
"version": "1.4.2",
"type": "module",
"scripts": {
"build": "tsc && vite build && node scripts/sync-package-artifacts.mjs",
"verify:pack": "node scripts/verify-package-artifacts.mjs",
"dev": "vite",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"push": "NODE_ENV=production && npm run build && npm push",
"test": "vitest --run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"coverage": "vitest run --coverage",
"metrics:build": "node scripts/metrics/collect-build-metrics.mjs",
"metrics:runtime": "node scripts/metrics/collect-runtime-metrics.mjs",
"metrics:compare": "node scripts/metrics/compare-metrics.mjs",
"metrics:all": "node scripts/metrics/run-all-metrics.mjs",
"metrics:report": "node scripts/metrics/run-all-metrics.mjs --skip-build --skip-runtime",
"postinstall": "playwright install"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"style": "./dist/citadel.css",
"import": "./dist/citadel.es.js",
"require": "./dist/citadel.umd.cjs"
},
"./styles.css": "./dist/citadel.css",
"./citadel.css": "./dist/citadel.css"
},
"types": "./dist/index.d.ts",
"main": "./dist/citadel.umd.cjs",
"module": "./dist/citadel.es.js",
"files": [
"dist"
],
"dependencies": {
"lucide-react": "^0.460.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@playwright/test": "^1.56.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.6",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-perf": "^3.3.3",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"jsdom": "^25.0.1",
"playwright": "^1.49.0",
"typescript": "^5.4.2",
"typescript-eslint": "^8.11.0",
"vite": "^5.1.5",
"vite-plugin-dts": "^4.5.0",
"vitest": "^2.1.6",
"webpack-cli": "^6.0.1"
}
}