forked from seasonedcc/composable-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "remix-domains",
"version": "0.2.0",
"description": "Decouple your business logic from your Remix actions and loaders. With first-class type inference from end to end.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"prebuild": "rm -rf dist/",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src/*.ts"
},
"dependencies": {
"qs": "^6.10.3"
},
"peerDependencies": {
"zod": "^3.13.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeasonedSoftware/remix-domains.git"
},
"author": "Seasoned Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/SeasonedSoftware/remix-domains/issues"
},
"homepage": "https://remix-domains.seasoned.cc",
"devDependencies": {
"@remix-run/node": "^1.3.1",
"@types/node": "^17.0.21",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"c8": "^7.11.0",
"eslint": "^8.11.0",
"prettier": "^2.6.0",
"typescript": "^4.6.2",
"vitest": "^0.7.0",
"zod": "^3.13.4"
}
}