-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.56 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "argue-cli",
"type": "module",
"version": "2.1.0",
"description": "A thin and strongly typed CLI arguments parser for Node.js.",
"author": "dangreen",
"license": "MIT",
"funding": "https://ko-fi.com/dangreen",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/Argue.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/Argue/issues"
},
"keywords": [
"cli",
"arguments",
"parser",
"console",
"terminal"
],
"engines": {
"node": ">=14.0.0"
},
"types": "./dist/index.d.ts",
"exports": "./src/index.ts",
"publishConfig": {
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"directory": "package"
},
"files": [
"dist"
],
"scripts": {
"clear:package": "del ./package",
"clear": "del ./package ./dist ./coverage",
"prepublishOnly": "run test build clear:package clean-publish",
"postpublish": "pnpm clear:package",
"emitDeclarations": "tsc --emitDeclarationOnly",
"build": "run -p [ rollup -c ] emitDeclarations",
"lint": "eslint 'rollup.config.js' 'test/**/*.{js,ts}' 'src/**/*.ts'",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest watch",
"test:types": "tsd",
"test:size": "size-limit",
"test": "run -p lint test:unit",
"commit": "cz",
"bumpVersion": "standard-version",
"createGithubRelease": "simple-github-release",
"release": "run bumpVersion [ git push origin master --tags ] createGithubRelease",
"updateGitHooks": "simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/cz-commitlint": "^18.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@size-limit/preset-small-lib": "^11.0.0",
"@swc/core": "^1.3.20",
"@trigen/browserslist-config": "8.0.0-alpha.27",
"@trigen/eslint-config": "8.0.0-alpha.29",
"@trigen/scripts": "8.0.0-alpha.29",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^0.34.4",
"browserslist": "^4.21.4",
"clean-publish": "^4.0.1",
"commitizen": "^4.2.5",
"del-cli": "^5.0.0",
"eslint": "^8.28.0",
"nano-staged": "^0.8.0",
"rollup": "^4.0.0",
"rollup-plugin-swc3": "^0.10.0",
"simple-git-hooks": "^2.8.0",
"simple-github-release": "^1.0.0",
"size-limit": "^11.0.0",
"standard-version": "^9.5.0",
"tsd": "^0.29.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^0.34.0"
},
"tsd": {
"directory": "./test"
}
}