@kl1/contracts 1.3.10 → 1.3.11

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/api-contracts/src/index.d.ts",
@@ -11,6 +11,14 @@
11
11
  "keywords": [],
12
12
  "author": "",
13
13
  "license": "ISC",
14
+ "scripts": {
15
+ "build": "NODE_OPTIONS='--max-old-space-size=4096' tsup src/index.ts --sourcemap --format esm,cjs",
16
+ "types": "NODE_OPTIONS='--max-old-space-size=4096' tsc --emitDeclarationOnly --declaration",
17
+ "watch:build": "npm-watch build",
18
+ "watch:types": "npm-watch types",
19
+ "dev": "concurrently \"npm:watch:build\" \"npm:watch:types\"",
20
+ "produce": "npm run build && npm run types"
21
+ },
14
22
  "watch": {
15
23
  "build": {
16
24
  "patterns": [
@@ -50,13 +58,5 @@
50
58
  "engines": {
51
59
  "node": ">=18.0.0",
52
60
  "npm": ">=10.0.0"
53
- },
54
- "scripts": {
55
- "build": "NODE_OPTIONS='--max-old-space-size=4096' tsup src/index.ts --sourcemap --format esm,cjs",
56
- "types": "NODE_OPTIONS='--max-old-space-size=4096' tsc --emitDeclarationOnly --declaration",
57
- "watch:build": "npm-watch build",
58
- "watch:types": "npm-watch types",
59
- "dev": "concurrently \"npm:watch:build\" \"npm:watch:types\"",
60
- "produce": "npm run build && npm run types"
61
61
  }
62
- }
62
+ }