-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.16 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.16 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
78
79
80
81
{
"name": "captan",
"version": "0.4.0",
"description": "Captan — Command your ownership. A tiny, hackable CLI cap table tool.",
"type": "module",
"bin": {
"captan": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p .",
"dev": "tsx src/cli.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:coverage:ci": "vitest run --coverage",
"test:all": "vitest run",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"type-check": "tsc --noEmit",
"validate": "yarn lint:fix && yarn format && yarn type-check",
"prepublishOnly": "npm run build",
"preversion": "yarn validate && yarn test:all",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"prepare": "husky"
},
"dependencies": {
"@inquirer/prompts": "^7.8.3",
"commander": "^12.0.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"coveralls": "^3.1.1",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"fast-check": "^4.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"tsx": "^4.16.2",
"typescript": "^5.4.0",
"vitest": "^3.2.4"
},
"keywords": [
"cap-table",
"equity",
"options",
"vesting",
"cli"
],
"engines": {
"node": ">=20"
},
"license": "MIT",
"author": "acossta",
"repository": {
"type": "git",
"url": "git+https://github.com/acossta/captan.git"
},
"homepage": "https://github.com/acossta/captan#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}