forked from AnandChowdhary/update-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@cactuslab/update-template",
"version": "2.2.1",
"description": "Easily update repos created with GitHub or local templates",
"type": "module",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prepublish": "$npm_execpath build",
"lint": "eslint",
"start": "ts-node update.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karlvr/update-template.git"
},
"keywords": [
"github",
"template",
"repo",
"tool",
"tooling",
"nodejs",
"typescript"
],
"author": "Karl von Randow",
"contributors": [
{
"name": "Karl von Randow"
},
{
"name": "Anand Chowdhary",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/karlvr/update-template/issues"
},
"homepage": "https://github.com/karlvr/update-template#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/deep-equal": "^1.0.4",
"@types/fs-extra": "^11.0.4",
"@types/recursive-readdir": "^2.2.4",
"@types/semver": "^7.5.8",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"semantic-release-gitmoji": "^1.6.8",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"deep-equal": "^2.2.3",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"recursive-readdir": "^2.2.3",
"semver": "^7.6.3"
},
"publishConfig": {
"access": "public"
}
}