-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "@younho9/guards",
"version": "0.7.17",
"description": "A set of type guards for TypeScript",
"keywords": [
"typescript",
"typeguard",
"type-guard"
],
"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/guards"
},
"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/guards"
},
"dependencies": {
"@sniptt/guards": "0.2.0",
"@younho9/types": "0.13.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"publishConfig": {
"access": "public"
}
}