-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 3.22 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@yozora/yozora",
"version": "0.0.0",
"author": {
"name": "guanghechen",
"url": "https://github.com/guanghechen/"
},
"repository": {
"type": "git",
"url": "https://github.com/yozorajs/yozora.git"
},
"homepage": "https://github.com/yozorajs/yozora/#readme",
"license": "MIT",
"private": true,
"engines": {
"node": ">= 16.0.0"
},
"type": "module",
"scripts": {
":publish": "yarn build:production && yarn test:coverage && lerna publish",
":publish-recover": "git stash && lerna publish from-package",
":upgrade": "yarn upgrade-interactive && run-s clean format build test",
"build": "nx run-many --target=build --all=true --parallel=false",
"build:production": "nx run-many --target=build --configuration=production --all=true --parallel=false",
"clean": "nx run-many --target=clean --all=true && yarn install",
"doc": "run-s doc:tokenizer doc:parser",
"doc:tokenizer": "node -r ts-node/register -r tsconfig-paths/register scripts/handlebar/tokenizer.ts",
"doc:parser": "node -r ts-node/register -r tsconfig-paths/register scripts/handlebar/parser.ts",
"format": "run-s format:lintfix format:prettier",
"format:prettier": "prettier --write .",
"format:lintfix": "eslint . --fix",
"prepublishOnly": "pinst --disable",
"postinstall": "run-s postinstall:dev",
"postinstall:dev": "is-ci || husky",
"postpublish": "pinst --enable",
"rebuild": "run-s clean build",
"test": "nx run-many --target=test --all=true",
"test:coverage": "nx run-many --target=test --configuration=coverage --all=true",
"test:parser": "nx run-many --target=test --projects=tag:parser",
"test:other": "nx run-many --target=test --projects=tag:other",
"test:tokenizer": "nx run-many --target=test --projects=tag:tokenizer",
"test:update": "nx run-many --target=test --configuration=update --all=true",
"version": "yarn && ghc-doc-link-rewrite --username=yozorajs --repository=yozora && git stage -u yarn.lock **/package.json **/*.md"
},
"workspaces": [
"packages/*",
"scaffolds/*",
"tokenizers/*"
],
"devDependencies": {
"@guanghechen/chalk": "^1.0.3",
"@guanghechen/conventional-changelog": "^6.0.1",
"@guanghechen/eslint-config": "^7.0.12",
"@guanghechen/helper-jest": "^6.0.2",
"@guanghechen/jest-config": "^6.0.2",
"@guanghechen/monorepo": "^1.0.1",
"@guanghechen/reporter": "^1.0.5",
"@guanghechen/rollup-config": "^6.0.4",
"@guanghechen/script-doc-link": "^6.0.3",
"@guanghechen/std": "^1.0.4",
"@types/jest": "29.5.14",
"@types/node": "20.17.12",
"cross-env": "7.0.3",
"eslint": "9.17.0",
"handlebars": "4.7.8",
"husky": "9.1.7",
"is-ci": "4.1.0",
"jest": "29.7.0",
"lerna": "8.1.9",
"lint-staged": "15.3.0",
"npm-run-all": "4.1.5",
"nx": "20.3.1",
"pinst": "3.0.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup": "4.30.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.3"
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,eslintrc}": [
"prettier --write"
]
},
"packageManager": "yarn@3.3.1"
}