@reflex-stack/tsp 0.1.1 → 0.1.2

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/README.md +1 -1
  2. package/package.json +32 -28
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # TSP
1
+ # TypeScript Package (TSP)
2
2
 
3
3
  **TypeScript Package** (tsp), scaffolds and build **Typescript** sources to **EcmaScript modules** and publish them as modular packages to **NPM** or **JSR**.
4
4
 
package/package.json CHANGED
@@ -1,30 +1,34 @@
1
1
  {
2
- "name": "@reflex-stack/tsp",
3
- "version": "0.1.1",
4
- "type": "module",
5
- "bin": {
6
- "tsp": "./src/cli.js"
7
- },
8
- "exports": {
9
- ".": "./src/cli.js",
10
- "./build": "./src/commands/build.js",
11
- "./init": "./src/commands/init.js",
12
- "./size-report": "./src/commands/size-report.js",
13
- "./tests": "./src/tests.js"
14
- },
15
- "scripts": {
16
- "publish": "node ./src/cli.js publish"
17
- },
18
- "author": "Alexis Bouhet",
19
- "license": "MIT",
20
- "description": "TSP scaffolds and build Typescript sources to EcmaScript modules and publish them as modular packages to NPM",
21
- "dependencies": {
22
- "@types/node": "^22.10.2",
23
- "@zouloux/cli": "^0.2.8",
24
- "@zouloux/files": "^3.0.4",
25
- "brotli-size": "^4.0.0",
26
- "stach": "^2.0.1",
27
- "terser": "^5.37.0",
28
- "typescript": "^5.7.2"
29
- }
2
+ "name": "@reflex-stack/tsp",
3
+ "version": "0.1.2",
4
+ "type": "module",
5
+ "bin": {
6
+ "tsp": "./src/cli.js"
7
+ },
8
+ "exports": {
9
+ ".": "./src/cli.js",
10
+ "./build": "./src/commands/build.js",
11
+ "./init": "./src/commands/init.js",
12
+ "./size-report": "./src/commands/size-report.js",
13
+ "./tests": "./src/tests.js"
14
+ },
15
+ "scripts": {
16
+ "publish": "node ./src/cli.js publish"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/reflex-stack/tsp"
21
+ },
22
+ "author": "Alexis Bouhet",
23
+ "license": "MIT",
24
+ "description": "TSP scaffolds and build Typescript sources to EcmaScript modules and publish them as modular packages to NPM",
25
+ "dependencies": {
26
+ "@types/node": "^22.10.2",
27
+ "@zouloux/cli": "^0.2.8",
28
+ "@zouloux/files": "^3.0.4",
29
+ "brotli-size": "^4.0.0",
30
+ "stach": "^2.0.1",
31
+ "terser": "^5.37.0",
32
+ "typescript": "^5.7.2"
33
+ }
30
34
  }