-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "@rocket.chat/memo",
"version": "0.31.25",
"description": "Memoization utilities",
"keywords": [
"memoize"
],
"homepage": "https://github.com/RocketChat/fuselage#readme",
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/memo"
},
"license": "MIT",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"/dist"
],
"scripts": {
".:build:cjs": "tsc -p tsconfig.cjs.json",
".:build:esm": "tsc -p tsconfig.esm.json",
"build": "run .:build:esm && run .:build:cjs",
"clean": "rimraf dist",
"docs": "typedoc",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"test": "jest --runInBand"
},
"devDependencies": {
"eslint": "~9.39.2",
"jest": "~30.3.0",
"lint-all": "workspace:~",
"prettier": "~3.6.2",
"rimraf": "~6.0.1",
"ts-jest": "~29.4.6",
"typedoc": "~0.28.18",
"typescript": "~5.9.3"
},
"publishConfig": {
"access": "public"
}
}