-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.29 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
{
"name": "@xlor/xlex",
"version": "1.0.1",
"description": "A Simple lexer for XLang.",
"keywords": [
"lexer",
"compiler",
"XLang"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LonelyKuma/XLex.git"
},
"license": "MIT",
"author": "XLor",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"xlex": "xlex.mjs"
},
"files": [
"dist",
"*.mjs"
],
"scripts": {
"build": "unbuild",
"format": "prettier --write src/**/*.ts test/**/*.ts",
"release": "bumpp --commit --push --tag && pnpm publish",
"test": "vitest",
"preversion": "unbuild",
"typecheck": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --parser=typescript --write",
"git add"
]
},
"dependencies": {
"@yjl9903/setmap": "^1.0.7",
"cac": "^6.7.12",
"graphviz": "^0.0.9",
"jiti": "^1.13.0"
},
"devDependencies": {
"@types/graphviz": "^0.0.30",
"@types/node": "^13.7.0",
"bumpp": "^7.1.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"typescript": "^4.6.2",
"unbuild": "^0.7.2",
"vitest": "^0.8.1"
},
"packageManager": "[email protected]"
}