-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "perfninja",
"version": "1.1.1",
"description": "Perf Ninja - Front-End monitoring tool browser client",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"source": "./src/index.ts",
"types": "./types/index.d.ts",
"main": "index.js",
"module": "index.mjs",
"type": "module",
"scripts": {
"rollup": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perfninja/browser.git"
},
"author": "egorshar",
"license": "MIT",
"bugs": {
"url": "https://github.com/perfninja/browser/issues"
},
"homepage": "https://perfninja.com",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"rollup": "^4.4.1",
"typescript": "^5.2.2"
}
}