-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.8 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
{
"private": true,
"author": "AG Grid <info@ag-grid.com>",
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/devtools.git"
},
"engines": {
"node": ">=18",
"pnpm": ">=9.4.0"
},
"scripts": {
"ci": "pnpm run verify && pnpm run build",
"build": "pnpm run --filter @ag-grid-devtools/cli build",
"build:lib": "pnpm run --recursive --parallel build:lib && pnpm run build:docs && pnpm run coverage",
"build:docs": "typedoc",
"verify": "pnpm run /^\\(lint\\|test\\)$/",
"eslint:fix": " pnpm run --recursive --parallel lint:eslint --fix",
"lint": "pnpm run /^lint:.*/ && pnpm run --recursive --parallel lint",
"lint:eslint": "eslint --ext js,cjs,mjs,ts .",
"lint:typescript": "tsc --noEmit && pnpm run --recursive --parallel lint:typescript",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"coverage:report": "vitest run --coverage --config ./report.vitest.config.mts",
"clean": "rm -rf docs coverages packages/*/dist",
"version": "pnpm --filter @ag-grid-devtools/cli exec -- pnpm run --silent version",
"publish": "pnpm run --filter @ag-grid-devtools/cli publish"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/generator": "7.23.0",
"@babel/parser": "7.23.0",
"@babel/template": "7.22.15",
"@babel/traverse": "7.23.2",
"@babel/types": "7.23.0",
"@types/glob": "^8.1.0",
"@types/estree": "^1.0.6",
"@types/hast": "^3.0.4",
"@types/minimatch": "^5.1.2",
"@types/mdast": "^4.0.4",
"@types/node": "22.7.3",
"@types/unist": "^3.0.3",
"glob": "11.0.0",
"prettier": "3.3.3",
"typedoc": "^0.26.7",
"typescript": "5.5.4",
"tsx": "4.19.1",
"vite": "5.4.4",
"vitest": "1.6.0",
"@vitest/coverage-v8": "1.6.0"
}
}