-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.53 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
{
"name": "@pocketarc/use-journey",
"description": "React hook for building user journeys.",
"keywords": [
"react",
"react hook",
"hooks",
"user journey",
"journey",
"steps",
"user flow",
"user flow builder"
],
"homepage": "https://github.com/pocketarc/use-journey#readme",
"bugs": {
"url": "https://github.com/pocketarc/use-journey/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/pocketarc/use-journey"
},
"author": {
"name": "PocketArc",
"email": "[email protected]",
"url": "https://pocketarc.com"
},
"exports": {
".": {
"import": {
"types": "./build/types/src/index.d.ts",
"default": "./build/src/index.mjs"
}
}
},
"version": "2.0.0",
"license": "MIT",
"types": "./build/types/src/index.d.ts",
"main": "build/src/index.mjs",
"type": "module",
"directories": {
"lib": "src",
"doc": "docs",
"example": "examples"
},
"scripts": {
"build": "npm run clean && npm run build:esm && npm run docs",
"build:esm": "tsc -p ./tsconfig.json && mv build/src/index.js build/src/index.mjs",
"clean": "rm -rf ./build",
"docs": "typedoc src/index.tsx",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.1",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.6.1",
"eslint": "^8.45.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"prettier": "^3.0.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"workspaces": [
"apps/*",
"packages/*"
]
}