-
-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.42 KB
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
{
"name": "arktype",
"description": "TypeScript's 1:1 validator, optimized from editor to runtime",
"version": "2.2.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arktypeio/arktype.git",
"directory": "ark/type"
},
"author": {
"name": "David Blass",
"email": "david@arktype.io",
"url": "https://arktype.io"
},
"type": "module",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"exports": {
".": {
"ark-ts": "./index.ts",
"default": "./out/index.js"
},
"./config": {
"ark-ts": "./config.ts",
"default": "./out/config.js"
},
"./internal/*.ts": {
"ark-ts": "./*.ts",
"default": "./out/*.js"
},
"./internal/*.js": {
"ark-ts": "./*.ts",
"default": "./out/*.js"
}
},
"files": [
"out"
],
"scripts": {
"build": "ts ../repo/build.ts",
"test": "ts ../repo/testPackage.ts; pnpm testIntegration",
"testIntegration": "pnpm testSimpleConfig && pnpm testAllConfig && pnpm testOnFailConfig && pnpm testEoptConfig",
"testSimpleConfig": "ts ./__tests__/integration/testSimpleConfig.ts",
"testAllConfig": "ts ./__tests__/integration/testAllConfig.ts",
"testOnFailConfig": "ts ./__tests__/integration/testOnFailConfig.ts",
"testEoptConfig": "ts ./__tests__/integration/testEoptConfig.ts"
},
"dependencies": {
"@ark/util": "workspace:*",
"@ark/schema": "workspace:*",
"arkregex": "workspace:*"
},
"publishConfig": {
"access": "public"
}
}