@spaceandtimelabs/dapp-mi-components 0.1.1 → 0.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaceandtimelabs/dapp-mi-components",
3
- "version": "0.1.1",
3
+ "version": "0.3.0",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -38,6 +38,7 @@
38
38
  "scripts": {
39
39
  "clean": "rimraf dist",
40
40
  "tsc": "tsc",
41
+ "watch-build": "chokidar 'src/**/*' -c 'npm run build'",
41
42
  "build:dev": "env-cmd -f .env yarn run build",
42
43
  "build": "yarn clean && tsc --emitDeclarationOnly && cross-env NODE_OPTIONS=--max_old_space_size=10240 vite build",
43
44
  "start": "vite",
@@ -97,7 +98,9 @@
97
98
  "@vitejs/plugin-react-refresh": "^1.3.6",
98
99
  "babel-eslint": "^10.1.0",
99
100
  "babel-loader": "^8.2.5",
101
+ "chokidar-cli": "^3.0.0",
100
102
  "cross-env": "^7.0.3",
103
+ "cz-conventional-changelog": "^3.3.0",
101
104
  "env-cmd": "^10.1.0",
102
105
  "eslint": "^8.2.0",
103
106
  "eslint-config-airbnb": "^19.0.4",
@@ -122,7 +125,8 @@
122
125
  "tslint": "^6.1.3",
123
126
  "tslint-react": "^5.0.0",
124
127
  "typescript": "^4.6.3",
125
- "vite": "^4.5.0"
128
+ "vite": "^4.5.0",
129
+ "vite-plugin-dts": "^4.3.0"
126
130
  },
127
131
  "engines": {
128
132
  "node": "^18.19.0",
@@ -133,5 +137,10 @@
133
137
  "extends": [
134
138
  "plugin:storybook/recommended"
135
139
  ]
140
+ },
141
+ "config": {
142
+ "commitizen": {
143
+ "path": "./node_modules/cz-conventional-changelog"
144
+ }
136
145
  }
137
146
  }