-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 2.45 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
91
92
93
94
95
96
97
98
99
100
{
"name": "@pixi/webdoc-template",
"version": "2.2.3",
"description": "PixiJS' webdoc template for API documentation",
"type": "commonjs",
"main": "publish.js",
"scripts": {
"prebuild": "run-s lint types",
"build": "rollup -c",
"watch": "rollup -cw",
"lint": "eslint src --ext .ts --max-warnings 0",
"types": "tsc",
"postversion": "git push && git push --tags",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/webdoc-template.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"pixi.js",
"pixi",
"webdoc",
"documentation"
],
"author": "Shukant K. Pal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixijs/webdoc-template/issues"
},
"homepage": "https://github.com/pixijs/webdoc-template#readme",
"files": [
"publish.js",
"static",
"tmpl"
],
"engines": {
"node": ">= 12",
"pnpm": "please-use-npm",
"yarn": "please-use-npm",
"npm": ">= 6"
},
"lint-staged": {
"*.{ts,js,mjs}": [
"eslint --cache --fix --max-warnings 0"
]
},
"dependencies": {
"code-prettify": "^0.1.0",
"color-themes-for-google-code-prettify": "^2.0.4",
"common-path-prefix": "^3.0.0",
"fs-extra": "^9.0.1",
"jquery": "^3.7.1",
"klaw-sync": "^6.0.0",
"lodash": "*",
"markdown-it": "^12.3.2",
"markdown-it-highlightjs": "^3.6.0",
"missionlog": "^1.6.0",
"open-sans-fonts": "^1.6.2",
"taffydb": "^2.7.3"
},
"peerDependencies": {
"@webdoc/model": "^1.6.6",
"@webdoc/template-library": "^1.2.1"
},
"devDependencies": {
"@pixi/eslint-config": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/fs-extra": "^11.0.4",
"@types/jquery": "^3.5.29",
"@types/klaw-sync": "^6.0.5",
"@types/lodash": "^4.14.202",
"@typescript-eslint/parser": "^6.14.0",
"clean-package": "^1.0.1",
"eslint": "^8.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.8.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.69.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"clean-package": {
"indent": 2,
"remove": [
"clean-package",
"scripts",
"engines",
"pre-commit",
"devDependencies"
]
}
}