-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
{
"name": "@xlor/xlang",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/yjl9903/XLang.git"
},
"license": "MIT",
"author": "XLor",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"bin": "xlang.mjs",
"files": [
"dist",
"*.mjs"
],
"scripts": {
"build": "unbuild",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"format": "prettier --write src/**/*.ts test/**/*.ts",
"release": "bumpp --commit --push --tag && pnpm publish --access public",
"test": "vitest",
"typecheck": "tsc --noEmit",
"preversion": "unbuild"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --parser=typescript --write",
"git add"
]
},
"dependencies": {
"@xlor/xlex": "^1.0.0",
"@xlor/xparse": "^1.0.0",
"cac": "^6.7.12"
},
"devDependencies": {
"@types/node": "17.0.43",
"bumpp": "8.2.1",
"husky": "4.3.8",
"lint-staged": "12.5.0",
"prettier": "2.7.1",
"pseudocode": "2.2.0",
"typescript": "4.7.4",
"unbuild": "0.7.4",
"vitest": "0.17.0",
"vuepress": "1.9.7",
"vuepress-plugin-mathjax": "1.2.8"
},
"packageManager": "pnpm@7.5.0"
}