forked from raycast/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "create-raycast-extension",
"version": "0.1.0",
"description": "Create a new Rayast extension from a template",
"bin": {
"create-raycast-extension": "dist/index.js"
},
"type": "module",
"author": "thomaspaulmann",
"license": "MIT",
"repository": {
"url": "https://github.com/raycast/extensions",
"directory": "templates"
},
"scripts": {
"build": "tsup ./index.ts --format esm --clean",
"check-types": "tsc --noEmit",
"test": "npm run check-types",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.4.0",
"execa": "^6.1.0",
"ora": "^6.1.2",
"tildify": "^3.0.0",
"untildify": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"tsup": "^6.2.3",
"typescript": "^4.8.3"
},
"files": [
"dist"
]
}