-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "diacritic",
"type": "module",
"private": true,
"packageManager": "pnpm@9.12.3",
"workspaces": [
"documentation",
"examples/*",
"packages/*"
],
"author": {
"name": "Carlos Eduardo de Oliveira Paludetto",
"email": "ceo.paludetto@gmail.com",
"url": "https://www.github.com/ceopaludetto"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://www.github.com/ceopaludetto/diacritic"
},
"scripts": {
"build": "turbo build --cache-dir=.turbo",
"lint:fix": "turbo lint --cache-dir=.turbo -- --fix && sherif --fix",
"lint": "turbo lint --cache-dir=.turbo && sherif",
"release": "pnpm run build && pnpm changeset publish",
"test:update": "vitest run --update",
"test": "vitest run"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^20.17.9",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"happy-dom": "^15.11.7",
"sherif": "^1.0.2",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.8"
}
}