xctc-utils 1.0.0
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.
- package/dist/index.d.ts +1 -0
- package/dist/index.js +7 -0
- package/package.json +17 -0
- package/tsconfig.json +9 -0
    
        package/dist/index.d.ts
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            export declare function add(a: number, b: number): number;
         | 
    
        package/dist/index.js
    ADDED
    
    
    
        package/package.json
    ADDED
    
    | @@ -0,0 +1,17 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "name": "xctc-utils",
         | 
| 3 | 
            +
              "version": "1.0.0",
         | 
| 4 | 
            +
              "description": "",
         | 
| 5 | 
            +
              "main": "./dist/index.js",
         | 
| 6 | 
            +
              "types": "./dist/index.d.ts",
         | 
| 7 | 
            +
              "scripts": {
         | 
| 8 | 
            +
                "test": "echo \"Error: no test specified\" && exit 1",
         | 
| 9 | 
            +
                "prepublish": "npm run build",
         | 
| 10 | 
            +
                "build": "tsc"
         | 
| 11 | 
            +
              },
         | 
| 12 | 
            +
              "author": "",
         | 
| 13 | 
            +
              "license": "ISC",
         | 
| 14 | 
            +
              "devDependencies": {
         | 
| 15 | 
            +
                "typescript": "^4.9.5"
         | 
| 16 | 
            +
              }
         | 
| 17 | 
            +
            }
         |