@cornerstonestack/core 1.7.6-rc.10

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.
@@ -0,0 +1 @@
1
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
package/package.json ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "@cornerstonestack/core",
3
+ "version": "1.7.6-rc.10",
4
+ "main": "dist/index.cjs.js",
5
+ "module": "dist/index.esm.js",
6
+ "exports": {
7
+ ".": {
8
+ "import": "./dist/index.esm.js",
9
+ "require": "./dist/index.cjs.js"
10
+ },
11
+ "./package.json": "./package.json"
12
+ },
13
+ "license": "ISC",
14
+ "description": "A library for building Cornerstone applications.",
15
+ "publishConfig": {
16
+ "access": "public",
17
+ "registry": "https://registry.npmjs.org/"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "clean": "rm -rf dist",
24
+ "help": "node scripts/help.js",
25
+ "versions": "bash scripts/package-versions.sh",
26
+ "test": "echo 'Tests disabled for core package'",
27
+ "test:ci": "echo 'Tests disabled for core package'",
28
+ "build": "yarn run clean && webpack --config webpack.config.js",
29
+ "build:watch": "webpack --config webpack.config.js --watch",
30
+ "dev": "cross-env GENERATE_SOURCEMAP=true webpack serve --config webpack.config.js --mode development",
31
+ "storybook": "storybook dev -p 6006 -c .storybook",
32
+ "storybook:build": "storybook build -c .storybook",
33
+ "verify-release": "bash ../../scripts/verify-core-release.sh",
34
+ "pack:dry-run": "npm pack --dry-run"
35
+ },
36
+ "dependencies": {
37
+ "@babel/cli": "^7.21.0",
38
+ "@babel/core": "^7.21.0",
39
+ "@babel/preset-env": "^7.20.0"
40
+ },
41
+ "peerDependencies": {
42
+ "@hello-pangea/dnd": "^18.0.1",
43
+ "@reduxjs/toolkit": "^2.8.2",
44
+ "date-fns": "^2.27.0",
45
+ "prettier": "^3",
46
+ "prop-types": "15.8.1",
47
+ "ramda": "0.28.0",
48
+ "react": "^19.1.0",
49
+ "react-dom": "^19.1.0",
50
+ "react-redux": "^8.0.5",
51
+ "react-router-dom": "^6.1.1",
52
+ "styled-components": "^6.1.17"
53
+ },
54
+ "peerDependenciesMeta": {
55
+ "@hello-pangea/dnd": {
56
+ "optional": true
57
+ },
58
+ "prettier": {
59
+ "optional": true
60
+ },
61
+ "react-router-dom": {
62
+ "optional": true
63
+ }
64
+ },
65
+ "devDependencies": {
66
+ "@storybook/addon-essentials": "^8.6.14",
67
+ "@storybook/addon-links": "^8.6.14",
68
+ "@storybook/addon-webpack5-compiler-babel": "^3.0.6",
69
+ "@storybook/react-webpack5": "^8.6.14",
70
+ "@storybook/test": "^8.6.14",
71
+ "@testing-library/jest-dom": "^6.6.3",
72
+ "@testing-library/react": "^16.3.0",
73
+ "babel-jest": "^29.6.1",
74
+ "babel-plugin-module-resolver": "^5.0.0",
75
+ "babel-plugin-root-import": "6.6.0",
76
+ "babel-plugin-styled-components": "^2.0.7",
77
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
78
+ "cross-env": "^7.0.3",
79
+ "jest": "^29.6.1",
80
+ "jest-circus": "^29.6.1",
81
+ "jest-environment-jsdom": "^29.7.0",
82
+ "jest-fetch-mock": "^3.0.3",
83
+ "jest-resolve": "^29.6.1",
84
+ "jest-watch-typeahead": "0.6.1",
85
+ "jspdf": "^4.0.0",
86
+ "react-test-renderer": "^19.1.0",
87
+ "redux-mock-store": "^1.5.4",
88
+ "storybook": "^8.6.14",
89
+ "webpack": "^5.24.3",
90
+ "webpack-cli": "^4.5.0",
91
+ "webpack-stats-plugin": "^1.1.3"
92
+ }
93
+ }