forked from prisma-labs/konn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.03 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
{
"name": "kont",
"version": "0.0.0-dripip",
"repository": "[email protected]:jasonkuhrt/kont.git",
"author": "Jason Kuhrt",
"license": "MIT",
"files": [
"dist-cjs",
"dist-esm",
"providers.d.ts",
"providers.js"
],
"exports": {
".": {
"require": "./dist-cjs/index.js",
"import": "./dist-esm/index.js"
},
"./providers": {
"require": "./dist-cjs/providers.js",
"import": "./dist-esm/providers.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist-cjs/entrypoints/main.d.ts"
],
"providers": [
"./dist-cjs/entrypoints/providers.d.ts"
]
}
},
"main": "./dist-cjs/index.js",
"module": "./dist-esm/index.js",
"scripts": {
"reflect:toc": "markdown-toc README.md -i --maxdepth 4 && prettier --write README.md",
"format": "yarn format:prettier && yarn format:imports",
"format:prettier": "prettier --write .",
"format:imports": "format-imports src && format-imports tests",
"format:check": "yarn format:check:imports && yarn format:check:prettier",
"format:check:imports": "format-imports --check src tests",
"format:check:prettier": "prettier --check .",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
"dev": "yarn clean && tsc --build --watch tsconfig.cjs.json tsconfig.esm.json",
"build": "yarn clean && yarn build:cjs && yarn build:esm && yarn ts-node scripts/simulatePackageExports",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"test": "jest",
"clean": "rm -rf dist-cjs dist-esm node_modules/.cache providers.d.ts providers.js",
"release:pr": "dripip pr",
"release:canary": "dripip preview",
"release:stable": "dripip stable",
"prepublishOnly": "yarn build",
"prepare": "ts-patch install -s"
},
"dependencies": {
"@jsdevtools/ono": "^7.1.3",
"execa": "^5.1.1",
"floggy": "^0.2.3",
"fs-jetpack": "^4.1.1",
"lodash": "^4.17.21",
"playwright": "^1.15.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@homer0/prettier-plugin-jsdoc": "4.0.5",
"@prisma-labs/prettier-config": "0.1.0",
"@types/jest": "27.0.1",
"@types/lodash": "^4.14.173",
"@types/node": "16.9.1",
"@types/ts-nameof": "4.2.1",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"dripip": "0.10.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-only-warn": "1.0.3",
"format-imports": "2.4.1",
"jest": "27.1.1",
"jest-watch-select-projects": "2.0.0",
"jest-watch-suspend": "1.1.2",
"jest-watch-typeahead": "0.6.4",
"markdown-toc": "^1.2.0",
"prettier": "2.4.0",
"ts-jest": "27.0.5",
"ts-nameof": "5.0.0",
"ts-node": "10.2.1",
"ts-patch": "^1.4.4",
"typescript": "4.4.3",
"typescript-snapshots-plugin": "1.7.0",
"typescript-transform-paths": "3.3.1"
},
"importSorter": {
"emptyLinesBetweenGroups": 0,
"wrappingStyle": "prettier"
}
}