-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
101 lines (101 loc) · 3.22 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@dfinity/gix-components",
"description": "A UI kit developed by the GIX team",
"version": "4.8.0",
"license": "Apache-2.0",
"scripts": {
"dev": "npm run i18n && vite dev",
"build": "npm run i18n && vite build && npm run copy:workers",
"staging": "npm run i18n && vite build --mode staging && npm run copy:workers",
"package": "svelte-kit sync && svelte-package",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check './**/*.{ts,js,mjs,json,scss,css,svelte,html,md}' && eslint .",
"format": "prettier --write './**/*.{ts,js,mjs,json,scss,css,svelte,html,md}'",
"test": "tsc --noEmit -p ./tsconfig.spec.json && vitest --config ./vitest.config.ts",
"download:samples": "./scripts/download-samples.sh",
"i18n": "node scripts/i18n.types.mjs && prettier --write ./src/lib/types/i18n.d.ts",
"e2e": "npm run download:samples && playwright test",
"e2e:ci": "npm run download:samples && playwright test --reporter=html",
"e2e:snapshots": "npm run download:samples && npx playwright test --update-snapshots --reporter=list",
"e2e:report": "npx playwright show-report",
"copy:workers": "node ./scripts/copy-workers.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@junobuild/analytics": "^0.0.28",
"@junobuild/config": "^0.0.14",
"@junobuild/vite-plugin": "^0.0.18",
"@playwright/test": "^1.47.1",
"@sveltejs/adapter-static": "^3.0.5",
"@sveltejs/kit": "^2.5.28",
"@sveltejs/package": "^2.3.5",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/svelte": "^5.2.1",
"@types/dompurify": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"jest-environment-jsdom": "^29.7.0",
"mdsvex": "^0.12.3",
"node-fetch": "^3.3.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-svelte": "^3.2.6",
"sass": "^1.79.1",
"svelte-check": "^4.0.2",
"svelte-preprocess": "^6.0.2",
"svelte2tsx": "^0.7.19",
"typescript": "^5.3.3",
"user-agent-data-types": "^0.4.2",
"vite": "^5.4.6",
"vitest": "^2.1.1"
},
"dependencies": {
"dompurify": "^3.1.6",
"html5-qrcode": "^2.3.8",
"marked": "^9.1.0",
"qr-creator": "^1.0.0"
},
"keywords": [
"ui",
"ux",
"designsystem",
"uikit",
"sveltekit",
"svelte"
],
"peerDependencies": {
"@dfinity/utils": "*",
"svelte": "^4.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity/gix-components.git"
},
"bugs": {
"url": "https://github.com/dfinity/gix-components"
},
"overrides": {
"semver": "^7.5.3"
}
}