-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.41 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
{
"scripts": {
"prettier": "prettier --write '**/*.{js,ts,json,md}'",
"preinstall": "npx only-allow pnpm",
"lint-staged": "lint-staged",
"build": "pnpm --filter=./packages/** build",
"test": "vitest run",
"publish": "pnpm publish -r --no-git-checks",
"sync": "node scripts/sync-packages.mjs",
"kill-port": "node scripts/kill-port.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"prereleases": "pnpm changeset pre enter",
"exit-prereleases": "pnpm changeset pre exit",
"release": "pnpm build && pnpm publish --no-git-checks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swordjs/sword-framework.git"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@types/node": "^14.18.12",
"@types/write": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.6.2",
"typescript": "4.9.5",
"unbuild": "^1.2.0",
"vitest": "latest"
},
"dependencies": {
"@swordjs/h3": "^0.7.6",
"@vue/reactivity": "^3.2.47",
"i18next": "^22.4.14",
"i18next-fs-backend": "^2.1.1",
"mri": "^1.2.0",
"ufo": "^0.8.4",
"write": "^2.0.0"
}
}