-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·77 lines (77 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·77 lines (77 loc) · 1.96 KB
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
77
{
"name": "@3fv/guard",
"version": "1.4.39",
"description": "TypeScript guard suite",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3fv/guard.git"
},
"keywords": [
"typescript",
"guard",
"typeguard",
"typesafe",
"type",
"check"
],
"author": "Jonathan Glanz",
"license": "MIT",
"bugs": {
"url": "https://github.com/3fv/guard/issues"
},
"homepage": "https://github.com/3fv/guard#readme",
"files": [
"lib",
"src",
"README.md"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/esm/index.d.ts"
},
"./*": {
"import": "./lib/esm/*.js",
"require": "./lib/cjs/*.js",
"types": "./lib/esm/*.d.ts"
}
},
"scripts": {
"build": "node ./scripts/build.mjs",
"build:link": "yarn run build && yarn unlink;yarn link",
"build:watch": "run-s build:link && yarn run build --watch",
"test": "jest",
"test:watch": "jest --watchAll --no-cache",
"test:dev": "run-s build && run-p test:watch build:watch",
"preversion": "yarn build && yarn test",
"postversion": "node ./scripts/release.mjs latest",
"release": "yarn version --patch --non-interactive"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@swc-node/core": "^1.13.3",
"@swc-node/jest": "^1.8.12",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.6",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^22.1.0",
"@types/shelljs": "^0.8.15",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"shelljs": "^0.8.5",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"zx": "^8.1.4"
}
}