forked from RocketChat/fuselage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.48 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
{
"name": "@rocket.chat/peggy-loader",
"version": "0.31.25",
"description": "Peggy loader for webpack",
"keywords": [
"peggy",
"loader",
"webpack"
],
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"homepage": "https://github.com/RocketChat/fuselage#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/peggy-loader"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"/dist"
],
"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",
"bump-next": "bump-next"
},
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"peerDependencies": {
"peggy": "*",
"webpack": "*"
},
"devDependencies": {
"@rocket.chat/eslint-config-alt": "workspace:~",
"@rocket.chat/prettier-config": "workspace:~",
"@types/node": "~14.18.42",
"bump": "workspace:~",
"eslint": "~8.38.0",
"lint-all": "workspace:~",
"npm-run-all": "^4.1.5",
"peggy": "3.0.2",
"prettier": "~2.8.7",
"rimraf": "^3.0.2",
"ts-jest": "~29.2.4",
"typescript": "~5.5.4",
"webpack": "~5.78.0"
}
}