-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "create-pipedrive-app",
"version": "0.1.0",
"description": "Scaffold a production-ready Pipedrive Marketplace app",
"license": "MIT",
"type": "module",
"files": [
"dist",
"plugin",
"plugins"
],
"bin": {
"create-pipedrive-app": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"format": "prettier --write src",
"lint": "eslint src",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"clean": "rm -rf apps/",
"generate": "tsx src/cli.ts apps/test-app",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^0.9.0",
"dedent": "^1.7.2",
"prettier": "^3.3.0",
"yaml": "^2.8.4"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/dedent": "^0.7.2",
"@types/node": "^20.19.39",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"vitest": "^1.6.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pipedrive/create-pipedrive-app"
}
}