-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.81 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
{
"name": "alge",
"version": "0.0.0-dripip",
"repository": "[email protected]:jasonkuhrt/alge.git",
"author": "Jason Kuhrt",
"packageManager": "[email protected]",
"license": "MIT",
"type": "module",
"types": "./build/esm/index.d.ts",
"files": [
"src",
"build"
],
"exports": {
".": {
"require": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.js"
},
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm/index.js"
}
},
"./types": {
"require": {
"types": "./build/cjs/entrypoints/types.d.ts",
"default": "./build/cjs/entrypoints/types.js"
},
"import": {
"types": "./build/esm/entrypoints/types.d.ts",
"default": "./build/esm/entrypoints/types.js"
}
}
},
"scripts": {
"ts-node": "ts-node-esm",
"build:toc": "markdown-toc README.md -i --maxdepth 4 && prettier --write README.md",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx --fix",
"check:format": "prettier --check .",
"check:lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"check:types": "pnpm tsc --noEmit",
"dev": "pnpm clean && tsc --build --watch tsconfig.cjs.json tsconfig.esm.json",
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm",
"build:cjs": "pnpm tsc --project tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > build/cjs/package.json",
"build:esm": "tsc --project tsconfig.esm.json",
"test": "vitest",
"clean": "tsc --build --clean && rm -rf build",
"release:pr": "dripip pr",
"release:canary": "dripip preview",
"release:stable": "dripip stable",
"prepack": "pnpm build"
},
"dependencies": {
"lodash.ismatch": "^4.4.0",
"remeda": "^1.9.1",
"ts-toolbelt": "^9.6.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@swc/core": "1.3.100",
"@swc/helpers": "0.5.3",
"@tsconfig/node16-strictest": "1.0.4",
"@types/lodash.ismatch": "4.4.9",
"@types/node": "20.10.3",
"@types/semver": "7.5.6",
"@types/semver-utils": "1.1.3",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"dripip": "0.10.0",
"eslint": "8.55.0",
"eslint-config-prisma": "0.2.0",
"eslint-plugin-codegen": "0.21.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-only-warn": "1.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-tsdoc": "0.2.17",
"execa": "8.0.1",
"fast-glob": "3.3.2",
"fs-jetpack": "5.1.0",
"markdown-toc": "1.2.0",
"prettier": "3.1.0",
"semver": "7.5.4",
"semver-utils": "1.1.4",
"ts-node": "10.9.1",
"tsd": "0.29.0",
"typescript": "5.3.3",
"vitest": "0.34.6"
}
}