-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.92 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
{
"name": "@fyblo/spid-cie-button",
"author": "Fyblo s.r.l. (https://fyblo.com)",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git+https://github.com/fyblo/spid-cie-button.git"
},
"bugs": {
"url": "https://github.com/fyblo/spid-cie-button/issues"
},
"homepage": "https://github.com/fyblo/spid-cie-button#readme",
"description": "A web component to authenticate with SPID and CIE",
"type": "module",
"version": "1.0.4",
"files": [
"dist"
],
"main": "dist/client/index.js",
"module": "dist/client/index.js",
"exports": {
".": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./server": {
"types": "./dist/server/entry-server.d.ts",
"default": "./dist/server/entry-server.js"
}
},
"typesVersions": {
"*": {
"server": [
"./dist/server/server.d.ts"
],
"client": [
"./dist/client/index.d.ts"
]
}
},
"scripts": {
"changes": " pnpm changelog --exclude chore,build,ci",
"prettify": "pnpm exec prettier . --write",
"dev": "pnpm prettify && node server",
"build": "pnpm build:client && pnpm build:server",
"build:client": "BUILD_TARGET=client vite build",
"build:server": "BUILD_TARGET=server vite build",
"preview": "NODE_ENV=production node server",
"release": "pnpm build && npm publish",
"test": "vitest"
},
"keywords": [
"SPID",
"CIE",
"Button",
"Web Component",
"authentication"
],
"devDependencies": {
"@types/node": "^20.11.28",
"generate-changelog": "^1.8.0",
"ofetch": "^1.3.3",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.4.0"
},
"peerDependencies": {
"ofetch": "^1.3.3"
}
}