@getpara/react-components 2.0.0-alpha.5 → 2.0.0-alpha.51
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 +29 -29
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpara/react-components",
|
|
3
|
-
"version": "2.0.0-alpha.5",
|
|
4
3
|
"description": "Capsule Core React Components",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
4
|
+
"version": "2.0.0-alpha.51",
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"@getpara/core-components": "2.0.0-alpha.51"
|
|
7
|
+
},
|
|
8
|
+
"devDependencies": {
|
|
9
|
+
"@types/react": "^18.2.64",
|
|
10
|
+
"glob": "^11.0.1",
|
|
11
|
+
"react": "18.2.0",
|
|
12
|
+
"react-dom": "18.2.0",
|
|
13
|
+
"typescript": "^5.8.3"
|
|
14
|
+
},
|
|
15
|
+
"directories": {
|
|
16
|
+
"lib": "lib"
|
|
17
|
+
},
|
|
8
18
|
"exports": {
|
|
9
19
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
20
|
+
"types": "./dist/types/index.d.ts",
|
|
21
|
+
"import": "./dist/index.js"
|
|
12
22
|
},
|
|
13
23
|
"./css/capsule-core.css": "./css/capsule-core.css"
|
|
14
24
|
},
|
|
15
|
-
"sideEffects": [
|
|
16
|
-
"*.css"
|
|
17
|
-
],
|
|
18
|
-
"directories": {
|
|
19
|
-
"lib": "lib"
|
|
20
|
-
},
|
|
21
25
|
"files": [
|
|
22
26
|
"dist/",
|
|
23
27
|
"css/"
|
|
24
28
|
],
|
|
29
|
+
"main": "dist/index.js",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
25
33
|
"scripts": {
|
|
26
|
-
"old-build": "node scripts/preBuild.js && yarn copy && yarn tsc",
|
|
27
34
|
"build": "node scripts/preBuild.js && yarn copy && rm -rf dist && node ./scripts/build.mjs && yarn typegen",
|
|
28
|
-
"
|
|
35
|
+
"copy": "node scripts/copy.cjs",
|
|
36
|
+
"old-build": "node scripts/preBuild.js && yarn copy && yarn tsc",
|
|
29
37
|
"tsc": "tsc -p . --outDir ./dist",
|
|
30
|
-
"
|
|
31
|
-
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@getpara/core-components": "2.0.0-alpha.5"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"@types/react": "^18.2.64",
|
|
37
|
-
"glob": "^11.0.0",
|
|
38
|
-
"react": "18.2.0",
|
|
39
|
-
"react-dom": "18.2.0",
|
|
40
|
-
"typescript": "^5.4.2"
|
|
41
|
-
},
|
|
42
|
-
"publishConfig": {
|
|
43
|
-
"access": "public"
|
|
38
|
+
"typegen": "tsc --emitDeclarationOnly"
|
|
44
39
|
},
|
|
45
|
-
"
|
|
40
|
+
"sideEffects": [
|
|
41
|
+
"*.css"
|
|
42
|
+
],
|
|
43
|
+
"type": "module",
|
|
44
|
+
"types": "dist/types/index.d.ts",
|
|
45
|
+
"gitHead": "f5b6354bac51de2e6988af340d7490dbdb62bc88"
|
|
46
46
|
}
|