-
-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
78 lines (78 loc) · 2.46 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
{
"name": "svelvet",
"version": "10.0.2",
"description": "A lightweight Svelte component library for building dynamic, node-based user interfaces",
"keywords": [
"svelte",
"svelvet",
"typescript"
],
"authors": "Aaron, Abhi, Alexander, Ali, Andrew, Anu, Brian, Britta, Christopher, Damian, David, Dillon, Emma, Ernesto, Henry, Horacio, Ian, Jeffrey, Jen, Jeremy, John, Johnny, Justin, Mauricio, Michael, Rachel, Rathna, Ruxin, Ryan, Sam, Samee, Spencer, Taylor, Thomas, Timmy, Tony, Von, Walter, Wesley, Isaac, Julian, Mayson, Solomon",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-source-labs/Svelvet/issues"
},
"homepage": "https://github.com/open-source-labs/Svelvet",
"repository": {
"type": "git",
"url": "git+https://github.com/open-source-labs/Svelvet.git"
},
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "yarn format && yarn lint && yarn test && yarn test:unit && npm run package",
"test": "playwright test",
"test:unit": "vitest run --environment jsdom",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prepare": "husky install"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"devDependencies": {
"@playwright/test": "^1.41.2",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.20.4",
"@sveltejs/package": "^2.1.0",
"@testing-library/svelte": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"axe-playwright": "^2.0.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte": "^2.32.0",
"husky": "^8.0.3",
"jest-dom": "^4.0.0",
"jsdom": "^22.1.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"publint": "^0.1.12",
"svelte-check": "^3.4.3",
"tslib": "^2.5.3",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vitest": "^0.32.2"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"main": "svelte.config.js",
"directories": {
"test": "tests"
},
"peerDependencies": {
"svelte": ">=3.59.2 || ^4.0.0"
}
}