@economic/taco 1.1.12-alpha.0 → 1.1.12

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,130 +1,130 @@
1
- {
2
- "name": "@economic/taco",
3
- "version": "1.1.12-alpha.0",
4
- "description": "> TODO: description",
5
- "author": "Matt Daly <matthew.daly@visma.com>",
6
- "homepage": "https://github.com/e-conomic/taco#readme",
7
- "license": "MIT",
8
- "main": "dist/index.js",
9
- "module": "dist/esm/index.js",
10
- "sideEffects": false,
11
- "types": "dist/index.d.ts",
12
- "directories": {
13
- "dist": "dist",
14
- "test": "__tests__"
15
- },
16
- "files": [
17
- "dist",
18
- "plugins",
19
- "tailwind.config.js",
20
- "types.json"
21
- ],
22
- "publishConfig": {
23
- "access": "public"
24
- },
25
- "repository": {
26
- "type": "git",
27
- "url": "git+https://github.com/e-conomic/taco.git"
28
- },
29
- "scripts": {
30
- "watch": "tsdx watch",
31
- "build": "tsdx build",
32
- "postbuild": "npm run generate-typedoc",
33
- "lint": "eslint src",
34
- "test": "tsdx test",
35
- "test:watch": "tsdx test --watch",
36
- "generate-typedoc": "node scripts/generate-typedoc",
37
- "generate-icons": "node scripts/generate-icons",
38
- "storybook-build": "build-storybook -o build-storybook --quiet",
39
- "storybook": "start-storybook -p 6006 --no-open"
40
- },
41
- "bugs": {
42
- "url": "https://github.com/e-conomic/taco/issues"
43
- },
44
- "dependencies": {
45
- "@economic/taco-tokens": "1.0.3-alpha.0",
46
- "@radix-ui/react-accordion": "^0.1.6",
47
- "@radix-ui/react-checkbox": "^0.1.5",
48
- "@radix-ui/react-dialog": "^0.1.7",
49
- "@radix-ui/react-dropdown-menu": "^0.1.6",
50
- "@radix-ui/react-hover-card": "^0.1.5",
51
- "@radix-ui/react-popover": "^0.1.6",
52
- "@radix-ui/react-radio-group": "^0.1.5",
53
- "@radix-ui/react-switch": "^0.1.5",
54
- "@radix-ui/react-tabs": "^0.1.5",
55
- "@radix-ui/react-tooltip": "0.1.6",
56
- "@radix-ui/react-use-controllable-state": "^0.1.0",
57
- "@react-aria/focus": "^3.2.3",
58
- "@react-aria/interactions": "^3.3.2",
59
- "classnames": "^2.3.1",
60
- "date-fns": "^2.14.0",
61
- "framer-motion": "^5.5.6",
62
- "keycode": "^2.2.0",
63
- "lodash-es": "4.17.21",
64
- "react-day-picker": "^7.4.8",
65
- "react-intersection-observer": "^8.31.1",
66
- "react-joyride": "^2.1.1",
67
- "react-table": "^7.5.0",
68
- "react-window": "^1.8.5",
69
- "react-window-infinite-loader": "^1.0.7",
70
- "typeface-open-sans": "^0.0.75",
71
- "uuid": "^8.1.0"
72
- },
73
- "peerDependencies": {
74
- "react": ">=17",
75
- "react-dom": ">=17",
76
- "tailwindcss": ">=3"
77
- },
78
- "devDependencies": {
79
- "@svgr/cli": "^5.5.0",
80
- "@testing-library/dom": "^7.31.0",
81
- "@testing-library/jest-dom": "^5.11.4",
82
- "@testing-library/react": "^11.1.0",
83
- "@testing-library/user-event": "^12.1.10",
84
- "@types/lodash": "^4.14.168",
85
- "@types/react": "^17.0.35",
86
- "@types/react-dom": "^17.0.11",
87
- "@types/react-table": "^7.0.19",
88
- "@types/react-window": "^1.8.2",
89
- "@types/react-window-infinite-loader": "^1.0.3",
90
- "@types/uuid": "^7.0.3",
91
- "autoprefixer": "^10.4.0",
92
- "fast-sort": "^2.2.0",
93
- "identity-obj-proxy": "^3.0.0",
94
- "lodash.flatten": "^4.4.0",
95
- "mutationobserver-shim": "^0.3.7",
96
- "namor": "^2.0.3",
97
- "postcss": "^8.3.11",
98
- "postcss-nested": "^4.2.3",
99
- "react-dom": "^17.0.2",
100
- "resize-observer-polyfill": "^1.5.1",
101
- "rimraf": "^3.0.2",
102
- "rollup-plugin-commonjs": "^10.1.0",
103
- "rollup-plugin-peer-deps-external": "^2.2.4",
104
- "rollup-plugin-postcss": "^4.0.2",
105
- "svgo": "^1.3.2",
106
- "tailwindcss": "^3.0.1",
107
- "tsdx": "^0.13.2",
108
- "typedoc": "0.18.0",
109
- "typescript": "^4.4.4"
110
- },
111
- "jest": {
112
- "moduleNameMapper": {
113
- "\\.css$": "identity-obj-proxy"
114
- }
115
- },
116
- "browserslist": {
117
- "development": [
118
- "last 2 chrome versions",
119
- "last 2 firefox versions",
120
- "last 2 edge versions",
121
- "not ie < 11"
122
- ],
123
- "production": [
124
- ">1%",
125
- "last 4 versions",
126
- "Firefox ESR",
127
- "not ie < 11"
128
- ]
129
- }
130
- }
1
+ {
2
+ "name": "@economic/taco",
3
+ "version": "1.1.12",
4
+ "description": "> TODO: description",
5
+ "author": "Matt Daly <matthew.daly@visma.com>",
6
+ "homepage": "https://github.com/e-conomic/taco#readme",
7
+ "license": "MIT",
8
+ "main": "dist/index.js",
9
+ "module": "dist/esm/index.js",
10
+ "sideEffects": false,
11
+ "types": "dist/index.d.ts",
12
+ "directories": {
13
+ "dist": "dist",
14
+ "test": "__tests__"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "plugins",
19
+ "tailwind.config.js",
20
+ "types.json"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/e-conomic/taco.git"
28
+ },
29
+ "scripts": {
30
+ "watch": "tsdx watch",
31
+ "build": "tsdx build",
32
+ "postbuild": "npm run generate-typedoc",
33
+ "lint": "eslint src",
34
+ "test": "tsdx test",
35
+ "test:watch": "tsdx test --watch",
36
+ "generate-typedoc": "node scripts/generate-typedoc",
37
+ "generate-icons": "node scripts/generate-icons",
38
+ "storybook-build": "build-storybook -o build-storybook --quiet",
39
+ "storybook": "start-storybook -p 6006 --no-open"
40
+ },
41
+ "bugs": {
42
+ "url": "https://github.com/e-conomic/taco/issues"
43
+ },
44
+ "dependencies": {
45
+ "@economic/taco-tokens": "^1.0.3",
46
+ "@radix-ui/react-accordion": "^0.1.6",
47
+ "@radix-ui/react-checkbox": "^0.1.5",
48
+ "@radix-ui/react-dialog": "^0.1.7",
49
+ "@radix-ui/react-dropdown-menu": "^0.1.6",
50
+ "@radix-ui/react-hover-card": "^0.1.5",
51
+ "@radix-ui/react-popover": "^0.1.6",
52
+ "@radix-ui/react-radio-group": "^0.1.5",
53
+ "@radix-ui/react-switch": "^0.1.5",
54
+ "@radix-ui/react-tabs": "^0.1.5",
55
+ "@radix-ui/react-tooltip": "0.1.6",
56
+ "@radix-ui/react-use-controllable-state": "^0.1.0",
57
+ "@react-aria/focus": "^3.2.3",
58
+ "@react-aria/interactions": "^3.3.2",
59
+ "classnames": "^2.3.1",
60
+ "date-fns": "^2.14.0",
61
+ "framer-motion": "^5.5.6",
62
+ "keycode": "^2.2.0",
63
+ "lodash-es": "4.17.21",
64
+ "react-day-picker": "^7.4.8",
65
+ "react-intersection-observer": "^8.31.1",
66
+ "react-joyride": "^2.1.1",
67
+ "react-table": "^7.5.0",
68
+ "react-window": "^1.8.5",
69
+ "react-window-infinite-loader": "^1.0.7",
70
+ "typeface-open-sans": "^0.0.75",
71
+ "uuid": "^8.1.0"
72
+ },
73
+ "peerDependencies": {
74
+ "react": ">=17",
75
+ "react-dom": ">=17",
76
+ "tailwindcss": ">=3"
77
+ },
78
+ "devDependencies": {
79
+ "@svgr/cli": "^5.5.0",
80
+ "@testing-library/dom": "^7.31.0",
81
+ "@testing-library/jest-dom": "^5.11.4",
82
+ "@testing-library/react": "^11.1.0",
83
+ "@testing-library/user-event": "^12.1.10",
84
+ "@types/lodash": "^4.14.168",
85
+ "@types/react": "^17.0.35",
86
+ "@types/react-dom": "^17.0.11",
87
+ "@types/react-table": "^7.0.19",
88
+ "@types/react-window": "^1.8.2",
89
+ "@types/react-window-infinite-loader": "^1.0.3",
90
+ "@types/uuid": "^7.0.3",
91
+ "autoprefixer": "^10.4.0",
92
+ "fast-sort": "^2.2.0",
93
+ "identity-obj-proxy": "^3.0.0",
94
+ "lodash.flatten": "^4.4.0",
95
+ "mutationobserver-shim": "^0.3.7",
96
+ "namor": "^2.0.3",
97
+ "postcss": "^8.3.11",
98
+ "postcss-nested": "^4.2.3",
99
+ "react-dom": "^17.0.2",
100
+ "resize-observer-polyfill": "^1.5.1",
101
+ "rimraf": "^3.0.2",
102
+ "rollup-plugin-commonjs": "^10.1.0",
103
+ "rollup-plugin-peer-deps-external": "^2.2.4",
104
+ "rollup-plugin-postcss": "^4.0.2",
105
+ "svgo": "^1.3.2",
106
+ "tailwindcss": "^3.0.1",
107
+ "tsdx": "^0.13.2",
108
+ "typedoc": "0.18.0",
109
+ "typescript": "^4.4.4"
110
+ },
111
+ "jest": {
112
+ "moduleNameMapper": {
113
+ "\\.css$": "identity-obj-proxy"
114
+ }
115
+ },
116
+ "browserslist": {
117
+ "development": [
118
+ "last 2 chrome versions",
119
+ "last 2 firefox versions",
120
+ "last 2 edge versions",
121
+ "not ie < 11"
122
+ ],
123
+ "production": [
124
+ ">1%",
125
+ "last 4 versions",
126
+ "Firefox ESR",
127
+ "not ie < 11"
128
+ ]
129
+ }
130
+ }