-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.58 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@krestui/uievents-keyroot",
"version": "0.1.1",
"type": "module",
"entry": "src/index.js",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:krestui/uievents-key.git",
"author": "KrestUI",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**"
]
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">= 12.0.0",
"npm": ">= 3.0.0",
"yarn": "^1.22.0"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/plugin-transform-runtime": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.21.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "11.0.0",
"@testing-library/jest-dom": "5.16.5",
"@types/jest": "29.4.0",
"@types/node": "18.14.6",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"babel-jest": "29.4.3",
"esbuild": "^0.17.11",
"eslint": "8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsdoc": "40.0.1",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"prettier": "^2.8.4",
"rimraf": "4.3.0",
"rollup": "3.18.0",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-bundle-size": "1.0.3",
"rollup-plugin-css-only": "4.3.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-node-externals": "5.1.2",
"rollup-plugin-peer-deps-external": "2.2.4",
"ts-jest": "29.0.5",
"tslib": "2.5.0",
"typescript": "4.9.5"
},
"scripts": {
"clean": "echo cleaning common && yarn workspaces foreach run clean",
"eslint": "echo eslinting common && yarn workspaces foreach run eslint",
"lint": "echo linting common libs && yarn workspaces foreach run lint",
"build": "echo building common libs && yarn workspaces foreach run build",
"test": "echo testing common lib && yarn workspaces foreach run test",
"format": "yarn workspaces foreach run format",
"next": "yarn workspaces foreach run next",
"pub": "yarn workspace @krestui/uievents-key run pub"
},
"files": []
}