-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.33 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
{
"name": "@uzmoi/prettier-plugin-aiscript",
"version": "0.3.1",
"description": "A prettier plugin for AiScript.",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"dev": "npm run dev -w website",
"build": "tsup",
"check": "tsc",
"lint": "biome check",
"test": "vitest",
"format": "prettier --check .",
"spellcheck": "cspell --no-progress ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/uzmoi/prettier-plugin-aiscript.git"
},
"keywords": [
"prettier",
"AiScript"
],
"author": "uzmoi",
"license": "MIT",
"bugs": {
"url": "https://github.com/uzmoi/prettier-plugin-aiscript/issues"
},
"homepage": "https://github.com/uzmoi/prettier-plugin-aiscript#readme",
"dependencies": {
"@syuilo/aiscript": "^0.18.0 || ^0.19.0",
"semver": "^7.6.3"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"cspell": "^8.13.0",
"dedent": "^1.5.3",
"emnorst": "^1.0.0-next.2",
"lefthook": "^1.7.11",
"prettier": "^3.3.3",
"tsup": "^8.2.3",
"typescript": "5.4.5",
"vitest": "^2.0.5"
},
"workspaces": [
"website/"
]
}