-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
77 lines (77 loc) · 2.73 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
{
"name": "docgen-tool",
"version": "4.3.0",
"description": "A tool for creating HTML and PDF documentation",
"main": "dist/docgen.ts",
"bin": {
"docgen": "dist/docgen.ts"
},
"files": [
"dist/*"
],
"scripts": {
"copy:files": "ncp src/include dist/include",
"dev": "ts-node src/docgen.ts run",
"build": "rimraf dist && tsc -p tsconfig.json && yarn copy:files",
"run:build": "dist/docgen.ts",
"build:docs": "rimraf dist && ts-node src/docgen.ts run -m -n -r -p -d 40000 -i src/docs -o ./docs",
"build:docs:nopdf": "ts-node src/docgen.ts run -m -n -r -i src/docs -o ./docs",
"build:styles": "rimraf src/styles/variables && npx style-dictionary build && sass --no-source-map src/styles/main.scss src/include/require/styles/framework.css && yarn prettier:fix",
"build:icons": "ts-node src/build-scripts/build-scripts.ts build-icons",
"test": "npm run prettier:check",
"test:run": "rimraf src/__test__/test-run-output && ts-node src/docgen.ts run -i src/__test__/test-run -o src/__test__/test-run-output -p -m -n -d 40000",
"test:scaffold": "rimraf src/__test__/test-run-output && ts-node src/docgen.ts scaffold -o src/__test__/test-run-output",
"test:prod:run": "rimraf src/__test__/test-run-output && ./dist/docgen.js run -i src/__test__/test-run -o ../source/__test__/test-run-output -p -m -n -d 40000",
"prettier:check": "prettier --check 'src/**/*.{ts,js,json,css,scss}'",
"prettier:fix": "prettier --write 'src/**/*.{ts,js,json,css,scss}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,js,json,css,scss}": "prettier --write",
"docgen": "prettier --write"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"cli-spinner": "^0.2.10",
"commander": "^11.0.0",
"fs-extra": "^11.1.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"picocolors": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"spawn-args": "^0.2.0",
"z-schema": "^6.0.1"
},
"devDependencies": {
"@tabler/icons": "^2.47.0",
"@types/node": "^20.3.1",
"@types/react": "^18.2.37",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"ncp": "^2.0.0",
"prettier": "^2.1.2",
"rimraf": "^5.0.1",
"sass": "^1.66.1",
"style-dictionary": "^4.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/mtmacdonald/docgen"
},
"author": "Inkit Inc. and contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/mtmacdonald/docgen/issues"
},
"homepage": "https://mtmacdonald.github.io/docgen/docs/index.html"
}