-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "@younho9/object",
"version": "0.9.2",
"description": "A set of type-safe object functions for TypeScript",
"keywords": [
"typescript",
"object"
],
"homepage": "https://github.com/younho9/lib#readme",
"bugs": {
"url": "https://github.com/younho9/lib/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/younho9/lib.git",
"directory": "packages/object"
},
"license": "MIT",
"author": "Younho Choo <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "yarn clean:dist",
"build": "concurrently yarn:build:*",
"build:esm": "cross-env BABEL_ENV=esm babel src --root-mode upward --extensions .ts,.tsx -d dist --source-maps",
"build:types": "tsc src/*.ts --emitDeclarationOnly --declaration --declarationDir dist/types",
"clean": "concurrently yarn:clean:*",
"clean:dist": "rimraf dist",
"test": "concurrently yarn:test:*",
"test:src": "jest --config ../../jest.config.cjs -- packages/object"
},
"dependencies": {
"@younho9/types": "0.13.0",
"lodash-es": "4.17.21",
"type-fest": "2.5.1"
},
"devDependencies": {
"@types/lodash-es": "4.17.5",
"@younho9/eslint-plugin": "0.6.1",
"expect-type": "0.13.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"publishConfig": {
"access": "public"
}
}