forked from aws-amplify/amplify-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.22 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@aws-amplify/ui",
"version": "5.6.7",
"main": "dist/index.js",
"module": "dist/esm/index.mjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json",
"./styles.css": "./dist/styles.css",
"./dist/styles.css": "./dist/styles.css",
"./theme.css": "./dist/theme.css",
"./tokens.ts": "./dist/react-native/tokens.ts"
},
"browser": {
"./styles.css": "./dist/styles.css",
"./theme.css": "./dist/theme.css"
},
"types": "dist/types/index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-ui",
"directory": "packages/ui"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "yarn build:css && yarn build:dist",
"build:css": "node -r esbuild-register ./scripts/generateCSS.ts",
"build:dist": "rollup --config",
"check:esm": "node --input-type=module --eval 'import \"@aws-amplify/ui\"'",
"clean": "rimraf dist node_modules",
"dev": "yarn build --watch",
"lint": "yarn typecheck",
"prebuild": "rimraf dist",
"test": "jest",
"test:ci": "yarn test && yarn check:esm",
"test:watch": "yarn test --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"csstype": "^3.1.1",
"lodash": "4.17.21",
"style-dictionary": "3.7.1",
"tslib": "2.4.1"
},
"peerDependencies": {
"aws-amplify": ">= 5.0.1",
"xstate": "^4.33.6"
},
"peerDependenciesMeta": {
"xstate": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/parser": "^5.20.0",
"autoprefixer": "^10.3.1",
"esbuild-register": "^3.4.2",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"globcat": "^1.3.4",
"jest": "^27.0.4",
"postcss": "^8.3.6",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"rollup-plugin-node-externals": "^4.1.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.35.2",
"ts-jest": "^27.0.3"
},
"sideEffects": [
"dist/**/*.css"
]
}