-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 KB
/
package.json
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
{
"name": "@reusable-ui/validation-icon",
"version": "6.6.0",
"description": "An icon for indicating a validity status.",
"keywords": [
"validation",
"icon",
"indicator",
"validity",
"valid",
"invalid",
"design",
"layouts"
],
"author": "HeyMarco <31385284+heyymarco@users.noreply.github.com>",
"homepage": "https://reusableui.org",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/reusable-ui/reusable-ui-monorepo.git"
},
"main": "dist/validation-icon.js",
"types": "dist/validation-icon.d.ts",
"type": "module",
"exports": {
".": "./dist/validation-icon.js",
"./index": "./dist/validation-icon.js",
"./index.js": "./dist/validation-icon.js"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"ncu": "ncu --peer",
"ncu:upgrade": "ncu --peer --upgrade",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"dependencies": {
"@cssfn/core": "^3.2.0",
"@reusable-ui/invalidable": "^6.6.0"
}
}