smath 0.0.2 → 0.0.3

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 (1) hide show
  1. package/package.json +5 -5
package/package.json CHANGED
@@ -1,21 +1,21 @@
1
1
  {
2
2
  "name": "smath",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Small math function library",
5
- "main": "index.js",
5
+ "main": "dist/index.js",
6
+ "types": "types/index.d.ts",
6
7
  "files": [
7
8
  "dist",
8
9
  "types"
9
10
  ],
10
11
  "scripts": {
11
12
  "dev": "rm -rf dist && tsc --watch",
12
- "build": "rm -rf dist types && tsc --removeComments",
13
+ "build": "rm -rf dist && tsc --removeComments",
13
14
  "types": "rm -rf types && tsc --declaration --declarationDir types --emitDeclarationOnly",
14
15
  "test": "tsc --noEmit",
15
16
  "clean": "rm -rf node_modules package-lock.json dist types docs",
16
17
  "docs": "rm -rf docs && typedoc src",
17
- "prepublishOnly": "npm run build && npm run types",
18
- "postpublish": "npm run clean"
18
+ "prepublishOnly": "npm run build && npm run types"
19
19
  },
20
20
  "keywords": [],
21
21
  "author": {