-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "heap-cleaner",
"version": "1.4.0",
"description": "",
"main": "./dist/cjs/index-cjs.js",
"module": "./dist/mjs/index.js",
"types": "./dist/mjs/index.d.ts",
"bin": "./dist/cjs/bin.js",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index-cjs.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"start": "node --require ts-node/register --max-old-space-size=32768 src/bin.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|ts|tsx|json)\"",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json"
},
"devDependencies": {
"@types/node": "20.5.6",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"chrome-devtools-frontend": "^1.0.1155899",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-sonarjs": "0.21.0",
"prettier": "3.0.2",
"rimraf": "5.0.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=16"
},
"keywords": [],
"author": "",
"contributors": [
"ykahlon",
"peledni",
"dolezel"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ykahlon/heap-cleaner.git"
}
}