@revolugo/elements 5.1.24-beta.7 → 5.1.24-beta.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +18 -18
package/package.json CHANGED
@@ -1,23 +1,16 @@
1
1
  {
2
2
  "name": "@revolugo/elements",
3
- "author": "Revolugo",
4
- "description": "Revolugo Elements UI library",
5
- "version": "5.1.24-beta.7",
3
+ "version": "5.1.24-beta.8",
6
4
  "private": false,
5
+ "description": "Revolugo Elements UI library",
6
+ "author": "Revolugo",
7
+ "main": "./dist/index.min.js",
8
+ "typings": "./src/types/index.d.ts",
7
9
  "files": [
8
10
  ".keep",
9
11
  "dist",
10
12
  "storybook-static"
11
13
  ],
12
- "main": "./dist/index.min.js",
13
- "typings": "./src/types/index.d.ts",
14
- "docker-registry": "eu.gcr.io/revolugo/elements",
15
- "engines": {
16
- "node": ">=20.9.0 <21"
17
- },
18
- "volta": {
19
- "extends": "../../../package.json"
20
- },
21
14
  "dependencies": {
22
15
  "http-server": "14.1.1"
23
16
  },
@@ -46,6 +39,13 @@
46
39
  "@revolugo/elements-core": "5.1.24",
47
40
  "@revolugo/elements-documentation": "5.1.24"
48
41
  },
42
+ "engines": {
43
+ "node": ">=20.9.0 <21"
44
+ },
45
+ "volta": {
46
+ "extends": "../../../package.json"
47
+ },
48
+ "docker-registry": "eu.gcr.io/revolugo/elements",
49
49
  "nx": {
50
50
  "targets": {
51
51
  "build": {
@@ -170,16 +170,16 @@
170
170
  "scripts": {
171
171
  "build": "webpack -c ./webpack.config.js --mode=production",
172
172
  "build-dev": "webpack -c ./webpack.config.js --mode=development",
173
- "chromatic-publish": "pnpm chromatic --build-script-name \"storybook:build\" --project-token=$CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes",
174
173
  "build-wc": "./bin/copy-core-assets.sh",
174
+ "chromatic-publish": "pnpm chromatic --build-script-name \"storybook:build\" --project-token=$CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes",
175
+ "clean-dist": "rm -rf dist",
175
176
  "demo": "webpack serve -c ./webpack.config.js --mode=development --open",
176
- "serve-lib:async": "webpack serve -c ./webpack.config.js --mode=development &",
177
177
  "serve-lib": "webpack serve -c ./webpack.config.js --mode=development",
178
- "storybook:render": "node --loader ts-node/esm ./.storybook/render.mts",
179
- "storybook:dev": "NODE_OPTIONS=--openssl-legacy-provider LOCAL_DIST=true start-storybook -p 6006",
178
+ "serve-lib:async": "webpack serve -c ./webpack.config.js --mode=development &",
180
179
  "storybook:build": "LOCAL_DIST=false build-storybook && cp -r ./src/health ./storybook-static/",
180
+ "storybook:dev": "NODE_OPTIONS=--openssl-legacy-provider LOCAL_DIST=true start-storybook -p 6006",
181
+ "storybook:render": "node --loader ts-node/esm ./.storybook/render.mts",
181
182
  "storybook:serve": "http-server ./storybook-static -p 6006",
182
- "watch": "webpack -c ./webpack.config.js --mode=development --watch &",
183
- "clean-dist": "rm -rf dist"
183
+ "watch": "webpack -c ./webpack.config.js --mode=development --watch &"
184
184
  }
185
185
  }