-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 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
{
"name": "@simpledoc/simpledoc",
"version": "0.1.5",
"description": "SimpleDoc conventions and CLI tooling for Markdown documentation in codebases.",
"license": "MIT",
"author": "Onur Solmaz <info@solmaz.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/osolmaz/SimpleDoc.git"
},
"bugs": {
"url": "https://github.com/osolmaz/SimpleDoc/issues"
},
"homepage": "https://github.com/osolmaz/SimpleDoc#readme",
"keywords": [
"simpledoc",
"documentation",
"markdown",
"migrator",
"cli"
],
"type": "module",
"bin": {
"simpledoc": "dist/bin/simpledoc.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:test": "tsc -p tsconfig.test.json",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"lint": "eslint . --max-warnings 0",
"prepack": "npm run build",
"prepare": "husky",
"precommit": "npm exec -- lint-staged && npm run -s build && node ./dist/bin/simpledoc.js check",
"release": "release-it",
"release:ci": "release-it --ci",
"migrate": "npm run -s build && node ./dist/bin/simpledoc.js migrate",
"migrate:dry": "npm run -s build && node ./dist/bin/simpledoc.js migrate --dry-run",
"test": "npm run -s build:test && node --test dist-test/test/integration/*.test.js"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs",
"skills"
],
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^11.0.0",
"skillflag": "^0.1.4"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^18.19.0",
"eslint": "^9.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"release-it": "^19.2.4",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write --ignore-unknown"
]
},
"publishConfig": {
"access": "public"
}
}