-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@instructure/ui-react-utils",
"version": "11.7.3",
"description": "A React utility library made by Instructure Inc.",
"author": "Instructure, Inc. Engineering and Product Design",
"module": "./es/index.js",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/instructure/instructure-ui.git"
},
"homepage": "https://instructure.github.io/instructure-ui/",
"bugs": "https://github.com/instructure/instructure-ui/issues",
"scripts": {
"lint": "ui-scripts lint",
"lint:fix": "ui-scripts lint --fix",
"clean": "ui-scripts clean",
"build": "ui-scripts build --modules es,cjs",
"build:watch": "ui-scripts build --watch",
"build:types": "tsc -p tsconfig.build.json"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.29.2",
"@emotion/is-prop-valid": "^1.3.1",
"@instructure/console": "workspace:*",
"@instructure/shared-types": "workspace:*",
"@instructure/ui-decorator": "workspace:*",
"@instructure/ui-dom-utils": "workspace:*",
"@instructure/ui-utils": "workspace:*",
"hoist-non-react-statics": "^3.3.2"
},
"devDependencies": {
"@instructure/ui-babel-preset": "workspace:*",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "15.0.7",
"vitest": "^3.2.2",
"@types/hoist-non-react-statics": "^3.3.7"
},
"peerDependencies": {
"react": ">=18 <=19",
"react-dom": ">=18 <=19"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"exports": {
".": {
"src": "./src/index.ts",
"types": "./types/index.d.ts",
"import": "./es/index.js",
"require": "./lib/index.js",
"default": "./es/index.js"
},
"./lib/*": "./lib/*",
"./es/*": "./es/*",
"./types/*": "./types/*",
"./package.json": "./package.json",
"./src/*": "./src/*"
}
}