-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.1 KB
/
package.json
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
{
"name": "@ithaka/pharos-cli",
"publishConfig": {
"access": "public"
},
"version": "5.5.1",
"description": "Pharos Web Component Generator",
"preferGlobal": true,
"dependencies": {
"colors": "^1.4.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0"
},
"bin": {
"pharos": "dist/index.js"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"scripts": {
"test": "jest",
"dev": "ts-node -P tsconfig.build.json src/index.ts",
"build": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ithaka/pharos"
},
"author": "ITHAKA",
"license": "MIT",
"bugs": {
"url": "https://github.com/ithaka/pharos/issues"
},
"homepage": "https://github.com/ithaka/pharos/tree/develop/packages/pharos-cli#readme",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/index.d.ts"
],
"types": "dist/index.d.ts",
"main": "dist/index.js"
}