forked from arktypeio/arktype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.6 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "arktype",
"description": "TypeScript's 1:1 validator, optimized from editor to runtime",
"version": "1.0.14-alpha",
"author": {
"name": "David Blass",
"email": "[email protected]",
"url": "https://arktype.io"
},
"repository": {
"type": "git",
"url": "https://github.com/arktypeio/arktype.git"
},
"type": "module",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": "./dist/main.js",
"./internal/*": "./dist/*"
},
"files": [
"dist",
"!*.tsbuildinfo"
],
"packageManager": "[email protected]",
"scripts": {
"prChecks": "pnpm install && pnpm lint && pnpm checkFormat && pnpm testRepo && pnpm buildRepo",
"build": "pnpm ts ./dev/scripts/build.ts",
"buildRepo": "pnpm build && pnpm run -r build",
"test": "pnpm ts ./dev/scripts/test.ts",
"tnt": "pnpm ts ./dev/scripts/test.ts --skipTypes",
"testRepo": "pnpm -r test && pnpm testTsVersions",
"testTsVersions": "pnpm ts ./dev/scripts/testTsVersions.ts",
"typecheck": "tsc --noEmit",
"ts": "node --loader=ts-node/esm --no-warnings=ExperimentalWarning",
"lint": "eslint --max-warnings=0 .",
"format": "prettier --write --ignore-path ./dev/configs/.prettierignore .",
"checkFormat": "prettier --check --ignore-path ./dev/configs/.prettierignore .",
"findUnused": "pnpm ts ./dev/scripts/findUnusedExports.ts",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install dev/configs/.husky",
"changeset": "pnpm ts ./dev/scripts/changeset.ts",
"ci:version": "pnpm ts ./dev/scripts/updateVersions.ts",
"ci:publish": "pnpm ts ./dev/scripts/changeset.ts publish"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.42",
"@types/mocha": "10.0.1",
"@types/node": "18.15.5",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"c8": "7.13.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-define-config": "1.17.0",
"eslint-plugin-only-warn": "1.1.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unicorn": "46.0.0",
"husky": "8.0.3",
"mocha": "10.2.0",
"prettier": "2.8.6",
"prettier-plugin-jsdoc": "0.4.2",
"pretty-quick": "3.1.3",
"ts-morph": "18.0.0",
"ts-node": "10.9.1",
"typescript": "5.0.3"
},
"c8": {
"checkCoverage": true,
"lines": 96,
"src": "./src",
"exclude": [
"test/**",
"dev/**"
],
"extension": ".ts",
"reporter": "lcovonly"
},
"prettier": {
"tabWidth": 4,
"semi": false,
"trailingComma": "none"
},
"mocha": {
"spec": [
"./dev/test/*.test.*"
],
"ignore": "**/node_modules/*",
"node-option": [
"loader=ts-node/esm",
"no-warnings=ExperimentalWarning"
]
},
"eslintConfig": {
"extends": "./dev/configs/.eslintrc.cjs"
},
"pnpm": {
"peerDependencyRules": {
"//": "Docusaurus/webpack nonsense",
"ignoreMissing": [
"@algolia/client-search",
"@babel/core",
"typescript"
]
}
}
}