-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "@dialpad/dialtone-cli",
"version": "1.0.0",
"description": "CLI for searching and exploring the Dialtone Design System",
"main": "build/index.js",
"type": "module",
"bin": {
"dialtone": "build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"start": "node build/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"citty": "^0.1.6",
"cli-table3": "^0.6.5"
},
"devDependencies": {
"@dialpad/dialtone-css": "workspace:*",
"@dialpad/dialtone-icons": "workspace:*",
"@dialpad/dialtone-query-core": "workspace:*",
"@dialpad/dialtone-vue": "workspace:^3",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "24.3.1",
"rollup": "^4.0.0",
"tsx": "^4.0.0",
"typescript": "^5.2"
},
"keywords": [
"dialtone",
"design-system",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/dialpad/dialtone.git",
"directory": "packages/dialtone-cli"
},
"license": "MIT"
}