forked from RocketChat/fuselage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "@rocket.chat/ui-kit",
"version": "0.31.18",
"description": "Interactive UI elements for Rocket.Chat Apps",
"homepage": "https://rocketchat.github.io/Rocket.Chat.Fuselage/",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git"
},
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "run-s .:build:clean .:build:esm .:build:cjs",
".:build:clean": "rimraf dist",
".:build:esm": "tsc -p tsconfig.json",
".:build:cjs": "tsc -p tsconfig-cjs.json",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"lint-staged": "lint-staged",
"test": "jest --runInBand",
"docs": "typedoc",
"bump-next": "bump-next"
},
"devDependencies": {
"@babel/core": "~7.17.2",
"@babel/eslint-parser": "~7.17.0",
"@babel/plugin-transform-runtime": "~7.17.0",
"@babel/preset-env": "~7.16.11",
"@rocket.chat/eslint-config-alt": "workspace:~",
"@rocket.chat/prettier-config": "workspace:~",
"@types/jest": "~27.4.0",
"babel-loader": "~8.2.3",
"bump": "workspace:~",
"eslint": "~8.8.0",
"jest": "~27.5.1",
"lint-all": "workspace:~",
"lint-staged": "~12.3.3",
"npm-run-all": "^4.1.5",
"prettier": "~2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "~27.1.3",
"ts-loader": "~9.2.6",
"typedoc": "~0.22.11",
"typescript": "~4.3.5",
"webpack": "~5.68.0",
"webpack-cli": "~4.9.2"
}
}