-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1002 Bytes
/
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
{
"name": "create-ps",
"version": "4.4.3",
"author": "Inter",
"license": "MIT",
"description": "Creates the foundations for an NPM package.",
"keywords": [
"npm",
"template",
"scaffolding",
"setup",
"structure"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"cps": "src/index.mjs",
"create-ps": "src/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inttter/create-ps.git"
},
"homepage": "https://createps.xyz",
"bugs": {
"url": "https://github.com/inttter/create-ps/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/inttter"
},
"dependencies": {
"@clack/prompts": "^0.8.2",
"axios": "^1.7.5",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"consola": "^3.2.3",
"execa": "^9.3.1",
"fs-extra": "^11.2.0",
"git-user-name": "^2.0.0"
},
"type": "module"
}