-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "flow-conduit",
"version": "0.2.0",
"private": false,
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vitest",
"test": "vitest run",
"build": "tsup src/index.ts --format esm,cjs --dts ",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish",
"example": "vite"
},
"repository": {
"type": "git",
"url": "github:JonasWijne/flow-conduit"
},
"keywords": [
"javascript",
"react",
"typescript"
],
"author": "JonasWijne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "github:JonasWijne/flow-conduit/issues"
},
"homepage": "github:JonasWijne/flow-conduit",
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"jsdom": "^21.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.28.5"
}
}