forked from arktypeio/arktype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.45 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
{
"name": "arktypeio",
"description": "TypeScript's 1:1 validator, optimized from editor to runtime",
"license": "MIT",
"funding": "https://github.com/arktypeio/arktype?sponsor=1",
"author": {
"name": "David Blass",
"email": "[email protected]",
"url": "https://arktype.io"
},
"repository": {
"type": "git",
"url": "https://github.com/arktypeio/arktype.git"
},
"type": "module",
"private": true,
"scripts": {
"prChecks": "pnpm install && pnpm lint && pnpm tnt && pnpm build",
"build": "pnpm -r build",
"buildCjs": "ARKTYPE_CJS=1 pnpm -r build",
"test": "mocha",
"tnt": "mocha --skipTypes --exclude 'ark/attest/**/*.test.*'",
"testRepo": "pnpm test && cd ./ark/test && pnpm test && pnpm testTsVersions",
"testTsVersions": "tsx ./ark/repo/testTsVersions.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint --max-warnings=0 .",
"format": "prettier --write .",
"checkFormat": "prettier --check .",
"knip": "knip",
"ci:publish": "changeset publish",
"ci:version": "tsx ./ark/repo/updateVersions.ts"
},
"devDependencies": {
"arktype": "workspace:*",
"@arktype/attest": "workspace:*",
"@arktype/repo": "workspace:*",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@types/node": "20.12.7",
"prettier": "3.2.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-define-config": "2.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-only-warn": "1.1.0",
"eslint-plugin-prefer-arrow-functions": "3.3.2",
"eslint-plugin-unused-imports": "3.1.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"c8": "9.1.0",
"knip": "5.9.4",
"tsx": "4.7.2",
"typescript": "5.4.5",
"mocha": "10.4.0",
"@types/mocha": "10.0.6"
},
"mocha": {
"//": "IF YOU UPDATE THE MOCHA CONFIG HERE, PLEASE ALSO UPDATE ark/repo/mocha.jsonc AND .vscode/settings.json",
"spec": [
"**/__tests__/**/*.test.*"
],
"ignore": "**/node_modules/**/*",
"node-option": [
"import=tsx"
],
"require": "./ark/repo/mocha.globalSetup.ts"
},
"c8": {
"checkCoverage": true,
"lines": 96,
"src": "./src",
"exclude": [
"__tests__/**"
],
"extension": ".ts",
"reporter": "lcovonly"
},
"prettier": {
"useTabs": true,
"semi": false,
"trailingComma": "none",
"experimentalTernaries": true,
"arrowParens": "avoid"
},
"eslintConfig": {
"extends": "./ark/repo/.eslintrc.cjs"
}
}