-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
49
50
51
52
53
54
55
56
{
"name": "c3addon",
"version": "1.0.9",
"description": "Node and CLI tool to automate publishing your Addons to Construct Addons page",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"bin": {
"c3addon": "./dist/cli.cjs"
},
"files": ["dist"],
"scripts": {
"build": "pkgroll --clean-dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ConstructFund/c3addon.git"
},
"keywords": [
"construct3",
"c3",
"addon",
"publish"
],
"author": "Endel Dreyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ConstructFund/c3addon/issues"
},
"homepage": "https://github.com/ConstructFund/c3addon#readme",
"devDependencies": {
"@types/node": "^22.12.0",
"pkgroll": "^2.6.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@types/prompts": "^2.4.9",
"commander": "^13.1.0",
"prompts": "^2.4.2",
"puppeteer": "^24.1.1",
"zip-lib": "^1.0.5"
}
}