-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 828 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 828 Bytes
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
{
"name": "@onehop/json-methods",
"version": "1.2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/hopinc/json-methods.git"
},
"homepage": "https://hop.io",
"author": "Hop Developers <developers@hop.io>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"package.json",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
"examples-basic": "tsx examples/basic.ts",
"release": "yarn build && yarn publish"
},
"devDependencies": {
"prettier": "^2.7.1",
"tsup": "^6.2.2",
"tsx": "^3.8.2",
"typescript": "^4.7.4"
},
"keywords": [
"json",
"deserialize",
"methods",
"typescript"
]
}