@australiangreens/ag-internal-components 0.0.66 → 0.0.68
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/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/components/AgDialog/AgDialog.d.ts +3 -2
- package/dist/components/AgDialog/AgDialog.d.ts.map +1 -1
- package/dist/esm/index.js +343 -346
- package/dist/esm/index.js.map +1 -1
- package/package.json +27 -19
- package/dist/.gitignore +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@australiangreens/ag-internal-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.68",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/australiangreens/ag-internal-components#readme",
|
|
7
7
|
"license": "MIT",
|
|
@@ -10,11 +10,36 @@
|
|
|
10
10
|
"contributors": [
|
|
11
11
|
"Anthony Blond <anthony@unfinishedteleporter.com>"
|
|
12
12
|
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "vite",
|
|
15
|
+
"build": "vite build && sh ./scripts/post-build.sh",
|
|
16
|
+
"preview": "vite preview",
|
|
17
|
+
"eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:coverage": "vitest run --coverage",
|
|
20
|
+
"test:watch": "vitest",
|
|
21
|
+
"### LIFECYCLE SCRIPTS ###": "",
|
|
22
|
+
"prepare": "husky install",
|
|
23
|
+
"prepublishOnly": "pnpm eslint && pnpm test && pnpm build",
|
|
24
|
+
"### HUSKY GIT HOOKS ###": "Called by husky pre-commit and pre-push scripts",
|
|
25
|
+
"prepush": "sh ./scripts/githooks/pre-push.sh",
|
|
26
|
+
"precommit": "sh ./scripts/githooks/pre-commit.sh",
|
|
27
|
+
"commitmsg": "sh ./scripts/githooks/commit-msg.sh",
|
|
28
|
+
"storybook": "storybook dev -p 6006",
|
|
29
|
+
"storybook:no": "storybook dev -p 6006 --no-open",
|
|
30
|
+
"build-storybook": "storybook build"
|
|
31
|
+
},
|
|
13
32
|
"files": [
|
|
14
33
|
"dist/*"
|
|
15
34
|
],
|
|
16
35
|
"main": "./dist/cjs/index.cjs",
|
|
17
36
|
"module": "./dist/esm/index.js",
|
|
37
|
+
"exports": {
|
|
38
|
+
".": {
|
|
39
|
+
"import": "./dist/esm/index.js",
|
|
40
|
+
"require": "./dist/cjs/index.cjs"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
18
43
|
"types": "./dist/index.d.ts",
|
|
19
44
|
"repository": {
|
|
20
45
|
"type": "git",
|
|
@@ -107,22 +132,5 @@
|
|
|
107
132
|
},
|
|
108
133
|
"engines": {
|
|
109
134
|
"node": ">=16.14.0"
|
|
110
|
-
},
|
|
111
|
-
"scripts": {
|
|
112
|
-
"dev": "vite",
|
|
113
|
-
"build": "vite build && sh ./scripts/post-build.sh",
|
|
114
|
-
"preview": "vite preview",
|
|
115
|
-
"eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
|
|
116
|
-
"test": "vitest run",
|
|
117
|
-
"test:coverage": "vitest run --coverage",
|
|
118
|
-
"test:watch": "vitest",
|
|
119
|
-
"### LIFECYCLE SCRIPTS ###": "",
|
|
120
|
-
"### HUSKY GIT HOOKS ###": "Called by husky pre-commit and pre-push scripts",
|
|
121
|
-
"prepush": "sh ./scripts/githooks/pre-push.sh",
|
|
122
|
-
"precommit": "sh ./scripts/githooks/pre-commit.sh",
|
|
123
|
-
"commitmsg": "sh ./scripts/githooks/commit-msg.sh",
|
|
124
|
-
"storybook": "storybook dev -p 6006",
|
|
125
|
-
"storybook:no": "storybook dev -p 6006 --no-open",
|
|
126
|
-
"build-storybook": "storybook build"
|
|
127
135
|
}
|
|
128
|
-
}
|
|
136
|
+
}
|
package/dist/.gitignore
DELETED
|
File without changes
|