forked from jordimarimon/ts-ast-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.69 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
{
"private": true,
"name": "ts-ast-parser",
"author": "Jordi Marimon Palarea",
"description": "Simplifies the TypeScript AST for generating documentation",
"homepage": "https://jordimarimon.github.io/ts-ast-parser",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/jordimarimon/ts-ast-parser.git"
},
"bugs": {
"url": "https://github.com/jordimarimon/ts-ast-parser/issues"
},
"engines": {
"node": "^14.20.0 || ^16.0.0 || ^18.0.0",
"npm": "^7.0.0 || ^8.0.0 || ^9.0.0"
},
"scripts": {
"build": "npm-run-all build:esm build:cjs",
"build:cjs": "node ./scripts/build-pkgs.mjs",
"build:esm": "tsc --build packages/*/tsconfig.json",
"doc:build": "npm-run-all doc:clear doc:api -p doc:build:11ty doc:build:css",
"doc:clear": "rm -rf ./_site",
"doc:start": "npm-run-all doc:api -p doc:start:11ty doc:start:css",
"doc:deploy": "gh-pages -d _site -m \"docs: update documentation\"",
"doc:build:11ty": "NODE_ENV=production eleventy --config=.eleventy.cjs",
"doc:build:css": "postcss docs/assets/css/main.css -o _site/assets/css/main.css",
"doc:start:11ty": "eleventy --serve --config=.eleventy.cjs",
"doc:start:css": "postcss docs/assets/css/main.css -o _site/assets/css/main.css --watch",
"doc:api": "node scripts/generate-api-reference.mjs",
"publish:all": "npm publish --access public --workspaces",
"publish:core": "npm publish --access public --workspace ./packages/core",
"publish:readers": "npm publish --access public --workspace ./packages/readers",
"test": "vitest run --config vitest.config.ts",
"coverage": "vitest run --coverage --config vitest.config.ts",
"prepare": "./scripts/prepare.sh",
"upgrade": "rm -rf node_modules package-lock.json && npm i",
"bump": "npx ncu -u -x typescript",
"bump:pkg": "node ./scripts/bump.mjs",
"lint": "eslint \"**/*.ts\" --max-warnings 0",
"lint:fix": "eslint \"**/*.ts\" --fix --cache --max-warnings 0"
},
"lint-staged": {
"**/*.ts": "npm run lint:fix"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/node": "~18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@typescript/lib-dom": "npm:@types/web@^0.0.84",
"@vitest/coverage-c8": "^0.26.2",
"ace-builds": "^1.14.0",
"autoprefixer": "^10.4.13",
"c8": "^7.12.0",
"chalk": "^5.2.0",
"comment-parser": "^1.3.1",
"cssnano": "^5.1.14",
"esbuild": "^0.16.10",
"eslint": "^8.30.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sonarjs": "^0.17.0",
"gh-pages": "^4.0.0",
"globby": "^13.1.3",
"jsoneditor": "^9.9.2",
"lint-staged": "^13.1.0",
"luxon": "^3.1.1",
"npm-check-updates": "^16.6.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^7.8.3",
"reflect-metadata": "^0.1.13",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^3.2.4",
"tailwindcss-logical": "^3.0.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.26.2"
}
}