-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.57 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
{
"name": "magic-esquery",
"version": "0.0.2",
"packageManager": "pnpm@8.15.3",
"description": "🪄 Type level ESQuery selector parser and matcher!",
"author": "auvred <aauvred@gmail.com> (https://github.com/auvred/)",
"license": "MIT",
"homepage": "https://github.com/auvred/magic-esquery#readme",
"repository": {
"type": "git",
"url": "https://github.com/auvred/magic-esquery"
},
"keywords": [
"ast",
"ecmascript",
"esquery",
"eslint",
"typescript",
"estree"
],
"main": "dist/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"build": "tsc -p tsconfig.src.json -d --emitDeclarationOnly && api-extractor run --verbose && npx del-cli 'dist/**' '!dist/index.d.ts'",
"gen-tests": "tsx tests/utils/gen-tests.ts",
"extract:ts-eslint": "tsx scripts/extract-selectors/ts-eslint/run.ts",
"extract:eslint-stylistic": "tsx scripts/extract-selectors/eslint-stylistic/run.ts",
"extract:jest": "tsx scripts/extract-selectors/jest/run.ts",
"test": "tsc --noEmit -p tsconfig.tests.json",
"typecheck": "tsc --noEmit -p tsconfig.src.json",
"release": "npx -y bumpp"
},
"devDependencies": {
"@auvred/eslint-config": "^0.7.0",
"@microsoft/api-extractor": "^7.40.1",
"@types/esquery": "^1.5.3",
"@types/node": "^20.11.19",
"@typescript-eslint/typescript-estree": "^7.0.1",
"eslint": "^8.56.0",
"esquery": "^1.5.0",
"prettier": "3.2.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
}
}