-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.8 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@poppanator/http-constants",
"version": "3.0.0",
"description": "",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./functions": {
"import": "./dist/functions.js",
"require": "./dist/functions.cjs",
"types": "./dist/functions.d.ts"
},
"./codes": {
"import": "./dist/codes.js",
"require": "./dist/codes.cjs",
"types": "./dist/codes.d.ts"
},
"./methods": {
"import": "./dist/methods.js",
"require": "./dist/methods.cjs",
"types": "./dist/methods.d.ts"
},
"./texts": {
"import": "./dist/texts.js",
"require": "./dist/texts.cjs",
"types": "./dist/texts.d.ts"
},
"./tuples": {
"import": "./dist/tuples.js",
"require": "./dist/tuples.cjs",
"types": "./dist/tuples.d.ts"
},
"./headers": {
"import": "./dist/headers.js",
"require": "./dist/headers.cjs",
"types": "./dist/headers/index.d.ts"
}
},
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/poppa/http-helpers-ts.git"
},
"keywords": [
"http",
"constants",
"http constants"
],
"files": [
"dist",
"src"
],
"author": {
"name": "Pontus Östlund",
"url": "https://github.com/poppa"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poppa/http-helpers-ts/issues"
},
"homepage": "https://github.com/poppa/http-helpers-ts#readme",
"scripts": {
"test": "jest",
"build": "vite build",
"dev": "npm run build -- --watch",
"clean": "rimraf dist"
},
"gitHead": "8c6af4f90dc694c8a67f62f1363cd2b3c58fa74b"
}