-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.09 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
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "jhipster-svelte-library",
"version": "0.13.0",
"description": "Svelte components and utility functions library for use in the JHipster generated projects.",
"keywords": [
"svelte",
"tailwindcss",
"jhipster"
],
"homepage": "https://github.com/vishal423/jhipster-svelte-library",
"bugs": {
"url": "https://github.com/vishal423/jhipster-svelte-library/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vishal423/jhipster-svelte-library.git"
},
"license": "Apache-2.0",
"author": {
"name": "Vishal Mahajan",
"email": "vishal423@gmail.com",
"url": "https://twitter.com/vishal423"
},
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"preview": "vite preview --port 3000",
"prepare": "husky",
"format": "prettier --write \"{,cypress/**,src/**}*.{js,svelte,json,cjs,md,json}\"",
"lint": "eslint .",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"cy:open": "cypress open --e2e --browser chrome",
"e2e": "npm run e2e:ci -- --headed",
"e2e:ci": "cypress run --browser chrome"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./notification": {
"types": "./dist/notification/index.d.ts",
"import": "./dist/notification/index.js"
},
"./layout": {
"types": "./dist/layout/index.d.ts",
"import": "./dist/layout/index.js"
},
"./page": {
"types": "./dist/page/index.d.ts",
"import": "./dist/page/index.js"
},
"./table": {
"types": "./dist/table/index.d.ts",
"import": "./dist/table/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"svelte": "^4.2.19",
"tailwindcss": "^3.4.13"
},
"devDependencies": {
"@sveltejs/adapter-auto": "3.2.5",
"@sveltejs/kit": "2.7.0",
"@sveltejs/package": "2.3.5",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/svelte": "5.2.3",
"@vitest/ui": "2.1.2",
"@vitest/coverage-v8": "2.1.2",
"autoprefixer": "10.4.20",
"cypress": "13.15.0",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.0.0",
"eslint-plugin-jest-dom": "5.4.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-svelte": "2.44.1",
"husky": "9.1.6",
"jsdom": "25.0.1",
"globals": "15.11.0",
"prettier": "3.3.3",
"prettier-plugin-svelte": "3.2.7",
"lint-staged": "15.2.10",
"publint": "0.2.11",
"svelte-check": "4.0.5",
"svelte2tsx": "0.7.22",
"tslib": "2.7.0",
"typescript": "5.6.3",
"vite": "5.4.8",
"vitest": "2.1.2"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}