-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "@playword/root",
"private": true,
"keywords": [
"ai",
"automated test",
"langchain",
"openai",
"playwright"
],
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Foreverskyin0216/playword.git"
},
"license": "MIT",
"author": "Zong-Wei Lu <foreverskyin@gmail.com>",
"type": "module",
"scripts": {
"test": "vitest run --coverage",
"lint:fix": "eslint . --fix",
"format:fix": "prettier . --write",
"prepare": "[ -d '.husky' ] && husky || (mkdir .husky && husky); echo 'npx --no-install commitlint --edit $1' > .husky/commit-msg; echo 'npm run pre-commit' > .husky/pre-commit; echo 'npm run pre-push' > .husky/pre-push",
"pre-commit": "lint-staged",
"pre-push": "npm run test",
"prepublishOnly": "npx lerna run build"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "^9.20.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.13.4",
"@vitest/coverage-v8": "^3.0.6",
"eslint": "^9.20.1",
"husky": "^9.1.7",
"lerna": "^8.2.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.1",
"vitest": "^3.0.6"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.34.8"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"tsup": "8.3.6"
}
}