-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
43 lines (43 loc) · 1005 Bytes
/
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
{
"name": "@tomphttp/bare-client",
"version": "2.2.0-alpha",
"homepage": "https://github.com/tomphttp",
"bugs": {
"url": "https://github.com/tomphttp/bare-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tomphttp/bare-client.git"
},
"author": {
"name": "TOMP Development",
"url": "https://github.com/tomphttp"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw"
},
"type": "module",
"license": "LGPL-3.0",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"browser": "dist/index.cjs",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@rollup/plugin-inject": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"prettier": "^2.8.8",
"rollup": "^3.23.0",
"rollup-plugin-typescript2": "^0.34.1"
}
}