-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
{
"name": "luisa-deaccessibilizer",
"version": "0.0.1",
"description": "A tool to remove accessibility features and degrade SwiftUI components to assist mutation testing and learning.",
"homepage": "https://docs.luisa.riso.dev",
"bugs": {
"url": "https://github.com/Erick2280/luisa-deaccessibilizer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Erick2280/luisa-deaccessibilizer.git"
},
"license": "MIT",
"author": "Erick Riso",
"type": "module",
"main": "dist/index.js",
"browser": {
"./dist/configuring/parser-provider.js": "./dist/configuring/web-parser-provider.js"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rimraf dist",
"compile-swift-wasm": "npx tree-sitter build --wasm node_modules/tree-sitter-swift --output dist/tree-sitter-swift.wasm",
"coverage": "vitest run --coverage",
"eslint": "npx eslint . --fix",
"lint": "npm run eslint && npm run prettier",
"prepare": "npm run clean && npx husky && npm run build && npm run compile-swift-wasm",
"prettier": "npx prettier --write '**/*{.js,.ts,.json,.md}'",
"test": "vitest",
"typedoc": "npx typedoc --out typedoc src/index.ts",
"watch": "tsc --project tsconfig.build.json --watch"
},
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"@oclif/core": "^4.0.34",
"chalk": "^5.3.0",
"junit2json": "^3.1.12",
"tree-sitter": "^0.21.1",
"tree-sitter-swift": "^0.6.0",
"web-tree-sitter": "^0.24.4",
"xxhash-wasm": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"tree-sitter-cli": "^0.24.4",
"typedoc": "^0.27.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,mjs,cjs,ts}": "eslint --cache --fix",
"*.{js,ts,json,md}": "prettier --write"
},
"bin": {
"luisa": "./bin/run.js"
},
"oclif": {
"bin": "luisa",
"commands": "./dist/cli/commands",
"dirname": "luisa",
"topicSeparator": ":"
}
}