-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.1 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@perfectthings/ui",
"description": "Perfect UI components",
"version": "10.1.9",
"type": "module",
"license": "GPL-3.0-or-later",
"keywords": [
"UI",
"svelte",
"PerfectThings"
],
"repository": {
"type": "git",
"url": "git+https://github.com/perfect-things/ui.git"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": [
"**/*.css",
"./dist/index.js"
],
"exports": {
".": {
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./dist/*.css": "./dist/*.css"
},
"scripts": {
"build:docs": "vite build",
"build:lib": "svelte-package -i ./src && node scripts/fix-declaration-maps.js",
"build": "npm run build:docs && npm run build:lib",
"dev": "vite",
"start": "vite",
"preview": "vite preview",
"changelog": "marked --gfm -i CHANGELOG.md -o docs/pages/changelog.html",
"lint:css:fix": "stylelint \"**/*.css\" --fix",
"lint:css": "stylelint \"**/*.css\"",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js:fix": "eslint --fix",
"lint:js": "eslint",
"lint:ts": "npx tsc --noEmit",
"lint": "npm run lint:js && npm run lint:css && npm run type-check",
"type-check:watch": "svelte-check --output human --tsconfig ./tsconfig.json --watch",
"type-check": "svelte-check --output human --tsconfig ./tsconfig.json",
"prepare": "husky",
"betarelease": "./scripts/betarelease.sh",
"release": "./scripts/release.sh",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"test": "vitest run"
},
"peerDependencies": {
"svelte": "^5.55.4"
},
"dependencies": {
"es-toolkit": "^1.45.1",
"vanillajs-datepicker": "^1.3.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@stylistic/stylelint-plugin": "^5.0.1",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"eslint": "^10.2.0",
"eslint-plugin-svelte": "^3.17.0",
"glob": "^13.0.6",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"jsdom": "^29.0.2",
"marked": "^18.0.0",
"shiki": "^4.0.2",
"stylelint": "^17.8.0",
"stylelint-config-standard": "^40.0.0",
"svelte": "^5.55.4",
"svelte-check": "^4.4.6",
"svelte-eslint-parser": "^1.6.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}