-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "shared-base",
"version": "0.0.12",
"private": false,
"scripts": {
"build": "vite build & tsc",
"test": "jest"
},
"dependencies": {
"date-fns": "^2.29.2",
"lodash": "^4.17.21",
"types-base": "0.0.2"
},
"devDependencies": {
"@types/chance": "^1.1.3",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@types/styled-components": "^5.1.25",
"chance": "^1.1.8",
"jest": "^28.1.3",
"jest-cli": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"rollup": "^2.77.0",
"ts-jest": "^28.0.7",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^3.0.3",
"vite-plugin-dts": "^1.4.0"
},
"files": [
"dist"
],
"main": "./dist/shared-base.umd.js",
"module": "./dist/shared-base.es.js",
"types": "./dist/dts/index.d.ts",
"exports": {
".": {
"import": "./dist/shared-base.es.js",
"require": "./dist/shared-base.umd.js"
}
}
}