-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "@taroxin/is",
"version": "0.3.3",
"description": "Type of value",
"main": "dist/index.js",
"files": [
"dist",
"package.json"
],
"packageManager": "[email protected]",
"scripts": {
"build": "rimraf dist && pnpm gen && tsc",
"gen": "esno scripts/gen-code.ts",
"docs": "pnpm run build && esno scripts/gen-docs.ts",
"test": "pnpm gen && vitest run",
"release": "bumpp package.json --commit --push --no-tag && pnpm run publish",
"publish": "pnpm -r publish --access public"
},
"keywords": [
"type",
"typescript",
"util",
"type-check",
"javascript"
],
"author": {
"name": "TaroXin",
"email": "[email protected]",
"url": "https://github.com/TaroXin"
},
"license": "MIT",
"devDependencies": {
"@taroxin/eslint-config": "^0.2.7",
"@types/node": "^18.11.18",
"bumpp": "^8.2.1",
"eslint": "^8.31.0",
"esno": "^0.16.3",
"jsdoc-to-markdown": "^8.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4",
"vitest": "^0.26.3"
}
}