-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "@socialgouv/e2esdk-react",
"version": "0.0.0-semantically-released",
"license": "Apache-2.0",
"description": "React components & hooks for e2eSDK client",
"author": {
"name": "François Best",
"email": "[email protected]",
"url": "https://francoisbest.com"
},
"repository": "https://github.com/SocialGouv/e2esdk",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"tsup": {
"entry": [
"src/index.tsx"
],
"dts": true,
"treeshake": true
},
"files": [
"dist/",
"sceau.json"
],
"scripts": {
"dev": "tsup --format esm --watch",
"build:npm": "tsup --clean --format esm,cjs",
"typecheck": "tsc",
"prepack": "sceau sign"
},
"peerDependencies": {
"@socialgouv/e2esdk-client": "workspace:^",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@socialgouv/e2esdk-client": "workspace:^",
"@socialgouv/e2esdk-config-typescript": "workspace:*",
"@types/node": "^18.15.5",
"@types/react": "^18.0.28",
"react": "^18.2.0",
"sceau": "^1.3.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
}
}