-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
27 lines (27 loc) · 989 Bytes
/
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
{
"private": true,
"type": "commonjs",
"scripts": {
"pretest": "prettier --check . && eslint . --report-unused-disable-directives && npm run dogfood",
"test": "vitest run",
"posttest": "npm run build",
"build": "node build.js",
"dogfood": "eslint --rulesdir src --config .eslintrc.dogfood.json test",
"examples": "eslint --rulesdir src --no-ignore --fix-dry-run --format json --report-unused-disable-directives examples --ext .js,.ts,.vue,.md"
},
"devDependencies": {
"@babel/eslint-parser": "7.23.10",
"@babel/plugin-syntax-import-attributes": "7.23.3",
"@babel/plugin-transform-flow-strip-types": "7.23.3",
"@typescript-eslint/parser": "6.21.0",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-markdown": "3.0.1",
"eslint-plugin-vitest": "0.3.22",
"eslint-plugin-vue": "9.21.1",
"prettier": "3.2.5",
"typescript": "5.3.3",
"vitest": "1.2.2"
}
}