-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.88 KB
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
{
"name": "@formsort/react-embed",
"version": "3.6.0",
"description": "Embed formsort flows in react components",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"format": "oxfmt src && oxlint --fix src",
"lint": "oxlint src",
"pack": "pnpm pack",
"release": "craft prepare --publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formsort/oss.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"formsort",
"embed",
"react"
],
"author": "Formsort Engineering <engineering@formsort.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/formsort/oss/issues"
},
"homepage": "https://github.com/formsort/oss/tree/master/packages/react-embed#readme",
"devDependencies": {
"@formsort/tsconfig": "workspace:*",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/jest": "^27.0.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
},
"dependencies": {
"@formsort/embed-messaging-manager": "^0.3.0",
"@formsort/web-embed-api": "^2.11.0"
},
"peerDependencies": {
"react": ">=16.13.0 <19.0.0"
},
"jest": {
"cacheDirectory": "./.jest-cache",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/dist/"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testEnvironment": "jsdom"
}
}