-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
{
"name": "type-assurer",
"version": "0.1.2",
"description": "TypeScript library that provides shorthand type assertions and type guard functions for multiple types.",
"keywords": [
"TypeScript",
"type guard",
"type assertion"
],
"repository": {
"url": "https://github.com/hacomono-lib/type-assurer",
"type": "git"
},
"author": "mew-ton <mxl_usmarc@slmail.mewton.jp>",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vitest",
"build": "tsup",
"test": "run-p test:*",
"test:spec": "vitest --run",
"test:spec-d": "vitest typecheck --run",
"test:type": "tsc --noEmit -p tsconfig.json",
"lint": "eslint --ext .ts .",
"format": "prettier --write . --ignore-path=.eslintignore"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"lodash": "^4.17.21",
"prettier": "^3.1.1",
"tsup": "^8.0.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"yarn-run-all": "latest"
},
"peerDependencies": {
"typescript": ">= 4.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"packageManager": "yarn@4.0.2",
"volta": {
"node": "20.10.0",
"yarn": "4.0.2"
}
}