-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
{
"name": "@brainylab/resolver-validators",
"version": "0.5.0",
"description": "",
"keywords": [],
"bugs": {
"url": "https://github.com/brainylab/resolver-validators/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brainylab/resolver-validators.git"
},
"license": "MIT",
"author": {
"name": "André Felipe Schulle",
"email": "[email protected]"
},
"type": "module",
"files": [
"index.js",
"index.d.ts",
"index.cjs",
"typebox"
],
"scripts": {
"build": "rimraf dist && pnpm build:core && pnpm build:typebox && pnpm build:create:package && pnpm build:copy:files",
"build:copy:files": "cp -r ./dist/** ./",
"build:core": "tsup src/index.ts --dts",
"build:create:package": "node ./scripts/create-package.mjs",
"build:typebox": "tsup src/resolvers/typebox/index.ts --dts --out-dir dist/typebox",
"commit": "pnpm commit:add && pnpm commit:detail && pnpm commit:push",
"commit:add": "git add .",
"commit:detail": "cz",
"commit:push": "git push",
"prepack": "clean-package",
"postpack": "clean-package restore",
"release": "changeset publish",
"release:beta": "changeset publish --snapshot --no-git-tag --tag beta",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:preview": "pnpm vite preview --outDir coverage",
"test:watch": "vitest",
"version": "changeset version",
"version:beta": "changeset version --snapshot beta"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@brainylab/eslint-config": "2.7.0",
"@brainylab/prettier-config": "1.0.1",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.24.1",
"@changesets/get-release-plan": "3.0.12",
"@changesets/types": "5.1.0",
"@sinclair/typebox": "0.33.15",
"@types/node": "^22.7.4",
"@vitest/coverage-v8": "2.1.2",
"@vitest/ui": "2.1.2",
"clean-package": "2.2.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"rimraf": "6.0.1",
"tsup": "8.3.0",
"tsx": "4.19.1",
"typescript": "5.6.2",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.2"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"publishConfig": {
"access": "public",
"provenance": true
},
"clean-package": "./clean-package.config.json"
}