ts-init-template 1.0.10 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +14 -4
  2. package/readme.md +11 -0
package/package.json CHANGED
@@ -1,14 +1,24 @@
1
1
  {
2
2
  "name": "ts-init-template",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "A TS project template for TS projects. This script will setup all the ts enviroment with 1 command. ",
5
5
  "main": "index.js",
6
6
  "author": "SigismundBT",
7
7
  "license": "MIT",
8
- "dependencies": {},
9
8
  "devDependencies": {},
10
9
  "type": "module",
11
10
  "bin": {
12
- "ts-init": "./index.js"
13
- }
11
+ "ts-init": "index.js"
12
+ },
13
+ "scripts": {
14
+ "test": "echo \"Error: no test specified\" && exit 1"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/SigismundBT/ts_init_template.git"
19
+ },
20
+ "bugs": {
21
+ "url": "https://github.com/SigismundBT/ts_init_template/issues"
22
+ },
23
+ "homepage": "https://github.com/SigismundBT/ts_init_template#readme"
14
24
  }
package/readme.md CHANGED
@@ -1,3 +1,14 @@
1
+
2
+ # 🚨 This package is deprecated
3
+
4
+ Please use the new package:
5
+
6
+ 👉 [ts-init-go](https://www.npmjs.com/package/ts-init-go)
7
+
8
+ ```bash
9
+ npx ts-init-go
10
+ ```
11
+
1
12
  # ts-init-template
2
13
 
3
14
  [![npm version](https://img.shields.io/npm/v/ts-init-template?color=blue)](https://www.npmjs.com/package/ts-init-template)