-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "prettier-plugin-pywire",
"version": "0.1.0",
"description": "Prettier plugin for PyWire (.wire) files",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "node build.mjs && tsc -p tsconfig.json --emitDeclarationOnly",
"build:dev": "node build.mjs --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@wasm-fmt/ruff_fmt": "^0.9.0",
"cosmiconfig": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^4.0.17",
"esbuild": "^0.20.0",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "^5.3.3",
"vitest": "^4.0.17"
}
}